v1
latestOpenAPI 3.1.02026-07-24111290748.0 KBWidgets
List widgets
List all widgets for the account, ordered.
get/api/widgets
Query parameters
cursorstring
Example:WyJuZXh0IiwgMjksIDkyOV0=
Value indicating your position in the list of all widgets. If omitted, the first widgets of the list will be returned.
limitinteger
Maximum number of widgets to return.
order_by'created_datetime:asc' | 'created_datetime:desc' | 'order:asc' | 'order:desc'
Attribute used to order widgets.
integration_idinteger nullable
Example:213
The ID of the integration to filter the widgets list by.
app_idstring nullable
Example:60b9f144096cf92533e0a14d
The ID of the 3rd party app to filter the widgets list by.
Response
List of widgets.
Example response
[
{
"id": 123,
"context": "ticket",
"created_datetime": "2020-12-01T13:00:00.123456",
"deactivated_datetime": "2020-12-03T13:00:00.123456",
"app_id": "60b9f144096cf92533e0a14d",
"order": 3,
"template": {
"type": "wrapper",
"widgets": [
{
"path": "account_info",
"type": "card",
"title": "account info",
"widgets": [
{
"path": "account_id",
"type": "text",
"title": "account id"
}
]
}
]
},
"type": "http",
"updated_datetime": "2020-12-02T13:00:00.123456"
}
]