Skip to main content
POST
/
api
/
client
/
v2
/
dm-playbook
Create DM Playbook Entry
curl --request POST \
  --url https://prod-nginx-v2.goextrovert.com/webgateway/api/client/v2/dm-playbook \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "contextId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "text": "<string>"
}
'
{
  "status": "success",
  "data": {
    "id": "8d256aa6-9b12-49a7-93ee-bf41634b5b60"
  },
  "message": "Operation completed successfully"
}

Authorizations

X-API-Key
string
header
required

API Key for authentication

Body

application/json
contextId
string<uuid>
required

ID of the Context this DM playbook entry belongs to. See the context config for the full Context shape.

text
string
required

The DM playbook entry text — one playbook element. Up to 750 characters.

Minimum string length: 1

Response

status
enum<string>
required

Response status

Available options:
success
data
object
required
message
string
required

Success message

Example:

"Operation completed successfully"