GET

Get Contact List Contact

Returns detailed information about a specific contact within a contact list.

Endpoint

GET v5/contactlist/{list_id}/contactlistcontact/{contact_id}

Requires authentication

Path Parameters

The contact list and specific contact to retrieve.

list_id
string
required
The ID of the contact list.
contact_id
string
required
The ID of the contact to retrieve.

Query Parameters

This endpoint does not accept additional query parameters beyond authentication credentials.

None

Response

Returns a single contact object. See List Contact List Contacts for the full list of response fields.

result_ok
boolean
Whether the request succeeded.
data
object
The contact object containing all contact fields.

Examples

Request (cURL)
curl -X GET "https://api.alchemer.com/v5/contactlist/YOUR_LIST_ID/contactlistcontact/YOUR_CONTACT_ID?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Response
{
  "result_ok": true,
  "data": {
    "id": 100039752,
    "email_address": "jon.doe@example.com",
    "status": "Active",
    "first_name": "Jon",
    "last_name": "Doe",
    "organization": "",
    "division": "",
    "department": "",
    "group": "",
    "role": "",
    "is_manager": false,
    "team": "",
    "home_phone": "",
    "fax_phone": "",
    "business_phone": "",
    "mailing_address": "",
    "mailing_address2": "",
    "mailing_address_city": "",
    "mailing_address_state": "",
    "mailing_address_postal": "",
    "mailing_address_country": "",
    "title": "",
    "url": ""
  }
}