POST
/
api
/
v1
/
skills
curl --request POST \
  --url https://cx-staging-three.fly.dev/api/v1/skills \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Customer Support Representative",
  "definition": "Inform the user about his recent refund, stating that we are currently in the process of facilitating the refund",
  "initialMessage": "Hi, thank you for reaching out to Happy Customer. This is {{aiName}}. How may I help you today?"
}'

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
Input data for creating a skills
name
string | null
required

Customer Support Representative

Example:

"Customer Support Representative"

definition
string | null
required

Instruction

Example:

"Inform the user about his recent refund, stating that we are currently in the process of facilitating the refund"

initialMessage
string | null
required

Greating message

Example:

"Hi, thank you for reaching out to Happy Customer. This is {{aiName}}. How may I help you today?"

Response

201
_mintlify/placeholder

skills created successfully