Sign in

Create audio post

documented

Creates a new audio post via the API.

POST /api/v1/posts/audio_postsPostsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://steadyhq.com/api/v1/posts/audio_posts" \
  -X POST \
  -H "Accept: application/vnd.api+json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "X-Api-Key: {{RUNSTEADY_API_KEY}}" \
  -H "Content-Type: application/vnd.api+json" \
  -d '{"audio_url": "{{$audio_url}}", "title": "{{$title}}", "description": "{{$description}}", "content": "{{$content}}", "teaser_image": "{{$teaser_image}}", "publish_at": "{{$publish_at}}", "restrict_to_plan_ids": {{$restrict_to_plan_ids}} }'
Create audio post · Steady · OpenIntegrations