API Reference
SIP Credentials

List app devices connected to a line

GET
/v1/numbers/{id}/sip-credentials/{credential_id}/devices

Every device enrolled on this line, revoked ones included so a revocation stays visible after the fact. Device secrets are never returned.

Authorization

bearerAuth
AuthorizationBearer <token>

Long-lived ES256 JWT minted from the dashboard (https://app.sautikit.com/developers/api-keys). Signed by the platform keyring. Carries workspace_id and scopes claims; revoked via the platform deny-list.

In: header

Path Parameters

id*string
Formatuuid
credential_id*string
Formatuuid

Response Body

application/json

curl -X GET "https://example.com/v1/numbers/497f6eca-6276-4993-bfeb-53cbbbba6f08/sip-credentials/497f6eca-6276-4993-bfeb-53cbbbba6f08/devices"
{  "data": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "label": "Amina's iPhone",      "platform": "ios",      "client_name": "string",      "created_at": "2019-08-24T14:15:22Z",      "last_seen_at": "2019-08-24T14:15:22Z",      "revoked_at": "2019-08-24T14:15:22Z"    }  ]}
Empty