GET
/
api
/
v1
/
skills
curl --request GET \
  --url https://cx-staging-three.fly.dev/api/v1/skills \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "id": "24f639fc-d319-45f3-8f57-106b88087c80",
    "name": "Inbound Call",
    "definition": "Inform the user about his recent refund, stating that we are currently in the process of facilitating the refund",
    "isInbound": "true",
    "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.

Query Parameters

page
number

The page number to return

limit
number

The maximum number of agents to return

direction
string

Skill direction either inbound|outbound

agentId
string

Agent id

Response

200 - application/json
The list of skills
id
string | null
required

The id of the skill

Example:

"24f639fc-d319-45f3-8f57-106b88087c80"

name
string | null
required

The name of the skill

Example:

"Inbound Call"

definition
string | null
required

The skill Instruction

Example:

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

isInbound
boolean | null
required

inbound

Example:

"true"

initialMessage
string | null
required

initialMessage

Example:

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