Skip to main content
POST
/
projects
/
{id}
/
schedule
Schedule Project
curl --request POST \
  --url https://api.politicalcomms.com/v1/projects/{id}/schedule \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "scheduled_at": "2026-05-01T13:00:00-04:00",
  "scheduled_timezone": "America/New_York"
}
'
{
  "success": true,
  "data": {
    "id": "proj_abc123",
    "status": "scheduled",
    "scheduled_at": "2026-05-01T13:00:00-04:00",
    "scheduled_timezone": "America/New_York"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.politicalcomms.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Authenticate every request by passing your API key in the X-API-Key header. Keys are scoped to your organization hierarchy.

Path Parameters

id
string
required

Resource ID

Body

application/json
scheduled_at
string<date-time>
required
scheduled_timezone
string
required
Example:

"America/New_York"

Response

Project scheduled