Skip to main content
POST
/
ideas
/
{id}
/
add-to-calendar
Add idea to calendar
curl --request POST \
  --url https://app.tryordinal.com/api/v1/ideas/{id}/add-to-calendar \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "publishDate": "2026-03-01"
}
'
{
  "id": "550e8400-e29b-41d4-a716-446655440000"
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

API key authentication. Generate an API key from your workspace settings.

Path Parameters

id
string<uuid>
required

Idea ID (UUID)

Body

application/json
publishDate
string<date>
required

Date to add the idea to on the calendar (YYYY-MM-DD or ISO 8601)

Response

Idea added to calendar successfully

id
string<uuid>
required

The post ID (same as the original idea ID)