SupportWire API
API ReferenceContacts

List contacts

Required scope: `contacts:read`.

GET
/api/oauth/v1/contacts

Authorization

bearerAuth
AuthorizationBearer <token>

OAuth access token, e.g. Authorization: Bearer swot_….

In: header

Response Body

application/json

curl -X GET "https://example.com/api/oauth/v1/contacts"
{
  "data": [
    {
      "id": "string",
      "user": {
        "id": "string",
        "name": "string",
        "email": "string",
        "instagram_handle": "string",
        "profile_picture_url": "string"
      },
      "source": "string",
      "blocked": true,
      "starred": true,
      "active": true,
      "source_info": {},
      "attributes": {},
      "auth_type": "string",
      "inserted_at": 0,
      "updated_at": 0,
      "active_at": 0
    }
  ]
}