List bindings
Returns your account's bindings, newest first and paginated. Narrow the list with the optional filters — most usefully configuration_id to find every ingress point a configuration governs before you change or retire it. Follow next_cursor to page.
Required scope: intelligence:read
Query Parameters
- Type: string · Cursornullablecursor
Pagination cursor from a previous response's
next_cursor. Omit for the first page. - Type: integer · Limitlimitmin:1max:100
Maximum number of items to return (1–100, default 20).
- Type: string · Configuration Idnullableconfiguration
_id Only bindings for this configuration
uuid. - Type: string · Mediumnullablemedium
Only bindings on this ingress plane, e.g.
voice. - Type: string · Typenullabletype
Only bindings of this ingress kind, e.g.
trunkornumber. - Type: string · Target Statusenumnullabletarget
_status Only bindings whose target is
activeormissing.values- active
- missing
- Type: boolean · Enablednullableenabled
Only enabled (
true) or parked (false) bindings. - Type: string · Keynullablekey
Only the binding for this exact target key (use with
type).
Responses
- application/json
- application/json
- application/json
Request Example for get/bindings
curl https://api.simwood.com/intelligence/v1/bindings \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"items": [
{
"uuid": "string",
"configuration_id": "string",
"target": {
"medium": "voice",
"type": "string",
"key": "string"
},
"enabled": true,
"target_status": "active",
"sync_state": "live",
"created_at": "string",
"updated_at": "string"
}
],
"next_cursor": "string"
}