Skip to main content
POST
/
speakers
/
create
Create speaker
curl --request POST \
  --url https://api.thehaystack.ai/v2/bevly/speakers/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Pastor John Smith",
  "bio": "<string>"
}
'
{
  "speaker": {
    "id": 123,
    "name": "Pastor John Smith",
    "bio": "<string>",
    "imageUrl": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Enter your API token from the Haystack dashboard

Body

application/json
name
string
required
Example:

"Pastor John Smith"

bio
string | null

Response

200 - application/json

Speaker created

speaker
object