To reply to a thread, you must meet one of the following permission requirements:
threads_keyword_search or the threads_manage_mentions permission.reply_to_id parameter to reply to a specific reply under the root post.curl -X POST \ -F "media_type=<MEDIA_TYPE>" \ -F "text=<TEXT>" \ -F "reply_to_id=<THREADS_ID>" \ -F "access_token=<ACCESS_TOKEN>" \ "https://graph.threads.net/v1.0/me/threads"
{
"id": "1234567890"
}
POST /{threads-user-id}/threads_publish endpoint to publish the reply container ID returned in the previous step.It is recommended to wait on average 30 seconds before publishing a Threads media container to give our server enough time to fully process the upload. See the media container status endpoint for more details.
creation_id — Identifier of the Threads media container created from the /threads endpoint.curl -i -X POST \ -F "creation_id=<MEDIA_CONTAINER_ID>" \ -F "access_token=<ACCESS_TOKEN>" \ "https://graph.threads.net/v1.0/<THREADS_USER_ID>/threads_publish"
{
"id": "1234567" // Threads Reply Media ID
}