api access

External API

  1. Home › 
  2. API Access

Returns contact information by contact ID

This API command reads contact information by the specified contact ID

Contact details identifier

The response contains the contact information object that was sent when the contact was created

Contact information that was sent when creating a contact

HTTP ENDPOINT
GET /v1/contacts/:id
EXAMPLE REQUEST: GET /v1/contacts/ABCDEFGHIJ
EXAMPLE RESPONSE: HTTP 200 OK
{
    "details": {
        "firstName": "John",
        "lastName": "Doe",
        "email": "[email protected]",
        "countryCode": "US",
        "city": "New York",
        "address1": "Wall Street 1",
        "zip": "10005",
        "state": null,
        "phoneNumber": "+1.23456789",
        "fax": null,
        "address2": null,
        "address3": null,
        "organization": null,
        "jobTitle": null
    }
}