Home / Docs / TikTok

TikTok Publishing Docs

Upload TikTok videos with Postifys to the creator inbox. Direct Post is not claimed unless separately approved.

Last updated: 2026-07-24 · Technical source: live Postifys API behavior and API reference

Quick answer: Eligible video upload to the connected creator inbox; creator completes publishing in TikTok. Use POST /api/tiktok/post with Authorization: Bearer YOUR_API_KEY.
Direct Post: Not claimed. Inbox upload requires the creator to finish publishing in TikTok.

What Postifys supports

Eligible video upload to the connected creator inbox; creator completes publishing in TikTok.

Product overview: TikTok integration. Full field reference also lives on API docs.

Endpoint

POST /api/tiktok/post · Auth: API key or session · Target field: tiktokAccountId when needed

Permissions / scopes (as granted): Creator upload-to-inbox workflow approved for Postifys

Common fields

  • tiktokAccountId - Optional when only one TikTok account is connected.
  • videoUrl - Required; public MP4 recommended.
  • caption - Optional.
  • privacy - Optional; default PUBLIC_TO_EVERYONE for the TikTok draft settings.
  • disableComment / disableDuet / disableStitch - Optional booleans.

cURL example

curl -X POST https://postifys.com/api/tiktok/post \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "tiktokAccountId": "OPEN_ID_FROM_CONNECTIONS",
    "videoUrl": "https://example.com/video.mp4",
    "caption": "Draft for creator review"
  }'

Limitations

  • Current production workflow is upload-to-inbox, not Direct Post to a live public profile.
  • Creator must finish publishing inside TikTok after inbox delivery.
  • Video eligibility still follows TikTok media and policy rules.

See also Media requirements, Errors, and Rate limits.