Skip to main content
POST
/
ai-brief-schedules
/
send-now
Send AI brief immediately
curl --request POST \
  --url https://core.ravenna.ai/api/ai-brief-schedules/send-now \
  --header 'Content-Type: application/json' \
  --header 'x-ravenna-api-token: <api-key>' \
  --data '{
  "dashboardId": "<string>",
  "slackChannelIds": [
    "<string>"
  ],
  "cadence": "daily",
  "prompt": "<string>",
  "userId": "<string>"
}'
{
  "success": true,
  "workflowId": "<string>",
  "sentToChannels": [
    "<string>"
  ],
  "errors": [
    {
      "channelId": "<string>",
      "error": "<string>"
    }
  ]
}

Authorizations

x-ravenna-api-token
string
header
required

Body

application/json
dashboardId
string
required
slackChannelIds
string[]
required
Minimum length: 1
cadence
enum<string>
default:daily
Available options:
daily,
weekly,
monthly
prompt
string | null
userId
string

Response

success
boolean
required
workflowId
string
required
sentToChannels
string[]
required
errors
object[]
required