Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.nedzo.ai/v1/contact-lists/ \
--header 'Authorization: Bearer <token>'{
"status_code": 123,
"message": "<string>",
"data": {
"contact_lists": [
{
"name": "<string>",
"campaign_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subaccount_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"contacts": [
{
"contact_list_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email": "[email protected]",
"first_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"business_name": "<string>",
"full_address": "<string>",
"city": "<string>",
"country": "<string>",
"state": "<string>",
"postal_code": "<string>",
"phone": "<string>",
"job_title": "<string>",
"dnc": true,
"custom_fields": [
{
"custom_field_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"value": "<string>"
}
],
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subaccount_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"last_dial_time": "2023-11-07T05:31:56Z",
"most_recent_outcome": "<string>",
"status": "Waiting"
}
]
}
],
"skip": 123,
"limit": 123,
"totalCount": 123
}
}Get all contact lists of a specific subaccount
curl --request GET \
--url https://api.nedzo.ai/v1/contact-lists/ \
--header 'Authorization: Bearer <token>'{
"status_code": 123,
"message": "<string>",
"data": {
"contact_lists": [
{
"name": "<string>",
"campaign_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subaccount_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"contacts": [
{
"contact_list_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email": "[email protected]",
"first_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"business_name": "<string>",
"full_address": "<string>",
"city": "<string>",
"country": "<string>",
"state": "<string>",
"postal_code": "<string>",
"phone": "<string>",
"job_title": "<string>",
"dnc": true,
"custom_fields": [
{
"custom_field_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"value": "<string>"
}
],
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subaccount_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"last_dial_time": "2023-11-07T05:31:56Z",
"most_recent_outcome": "<string>",
"status": "Waiting"
}
]
}
],
"skip": 123,
"limit": 123,
"totalCount": 123
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?