Skip to main content

Briefings

Use briefing endpoints when you want an opinionated, ready-to-consume output instead of a general-purpose run.

Morning briefing

POST /api/v1/navi/briefings/morning
Content-Type: application/json

{
  "scope": "org",
  "format": "json"
}
Example:
curl -s \
  -X POST \
  -H "Cookie: sb-access-token=<your-session-cookie>" \
  -H "Content-Type: application/json" \
  https://dev.meridian7.io/api/v1/navi/briefings/morning \
  -d '{"scope":"org","format":"json"}' | jq

Meeting briefing

POST /api/v1/navi/briefings/meeting
Content-Type: application/json

{
  "dealId": "11111111-1111-1111-1111-111111111111",
  "contactName": "Elena Vasquez",
  "format": "json"
}
Example:
curl -s \
  -X POST \
  -H "Cookie: sb-access-token=<your-session-cookie>" \
  -H "Content-Type: application/json" \
  https://dev.meridian7.io/api/v1/navi/briefings/meeting \
  -d '{
    "dealId": "11111111-1111-1111-1111-111111111111",
    "contactName": "Elena Vasquez",
    "format": "json"
  }' | jq

Output format

The public deployment currently supports json output. If you request markdown in a deployment that has not enabled it yet, Navi responds with 501 not_implemented.