List UI skills
Retrieve all UI skills for the specified entity.
get
Authorizations
D360-API-KEYstringRequired
API Key for Messaging API authentication. Send your API key in the D360-API-KEY header.
Query parameters
beforestringOptional
If specified, a page of data immediately before this cursor will be returned
afterstringOptional
If specified, a page of data immediately after this cursor will be returned
limitintegerOptional
The maximum number of objects that may be returned. A query may return fewer than this due to filtering, so use the absence of a next link rather than a short page to detect the end of the list
Header parameters
X-API-Versionstring · enumOptionalPossible values:
Meta Business Agent API version
Responses
200
A paginated list of UI skills
application/json
A paginated list of UI skills
400
Bad request
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
404
Not found
application/json
429
Too many requests
application/json
500
Server error
application/json
get/agent-ui-skills
GET /agent-ui-skills HTTP/1.1
Host: waba-v2.360dialog.io
D360-API-KEY: YOUR_API_KEY
Accept: */*
{
"data": [
{
"component_type": "cta_url",
"created_at": 1735689600,
"flow_id": 1234567890,
"id": "1234567890",
"instruction": "Send this when the customer asks to browse the product catalog",
"status": "enabled",
"title": "Show the catalog carousel",
"updated_at": 1735689600
}
],
"paging": {
"cursors": {
"after": "text",
"before": "text"
},
"next": "text",
"previous": "text"
}
}Last updated
Was this helpful?