curl --request PUT \
--url https://api.example.com/api/v1/projects/{project_id}/posts/{post_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"Content": "<string>",
"Media": "<string>",
"TemplateId": "<string>",
"PromptId": "<string>",
"Platforms": [
"<string>"
],
"ScheduleDate": "2023-11-07T05:31:56Z",
"Timezone": "<string>",
"Status": "DRAFT"
}
'