For the complete documentation index, see llms.txt. This page is also available as Markdown.

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 · enumOptional

Meta Business Agent API version

Possible values:
Responses
200

A paginated list of UI skills

application/json

A paginated list of UI skills

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?