Skip to main content
GET
/
v1
/
contact-lists
/
{contact_list_id}
/
contacts
List contacts in a contact list
curl --request GET \
  --url https://api.openmic.ai/v1/contact-lists/{contact_list_id}/contacts \
  --header 'Authorization: Bearer <token>'
{
  "contacts": [
    {
      "id": 123,
      "name": "<string>",
      "phone_number": "<string>",
      "phone_number_2": "<string>",
      "phone_number_3": "<string>",
      "contact_info": {},
      "contact_list_id": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "limit": 123,
    "offset": 123,
    "total": 123,
    "has_more": true
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Include your API key in the Authorization header as: Authorization: Bearer <your-api-key>

Path Parameters

contact_list_id
integer
required

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 100
offset
integer
default:0
Required range: x >= 0

Response

List of contacts

contacts
object[]
pagination
object