# Contact Data by ID

Retrieve all properties and respective values associated with a specific contact. To obtain a valid contact_ID, first call GET /v3/REST/contact to list your contacts.

Endpoint: GET /v3/REST/contactdata/{contact_ID}
Version: 1.0.0
Security: basicAuth

## Path parameters:

  - `contact_ID` (integer, required)
    Unique numeric ID for the contact, whose properties you want to retrieve.
    Example: 1000

## Response 200 fields (application/json):

  - `Count` (integer)
    Indicates the number of objects in the Data array.

  - `Data` (array)
    A JSON array containing a list of objects returned by this endpoint.

  - `Data.ContactID` (integer)
    Unique numeric ID for this contact.

  - `Data.ID` (integer)
    Unique numeric ID for this contact's Data object. ID value will always equal the value of ContactID.

  - `Data.Data` (array)
    A JSON array containing contact properties and their values. The properties must have been created beforehand (refer to /contactmetadata).

  - `Data.Data.Name` (string)
    The name of the contact property.

  - `Data.Data.Value` (string)
    The value of the contact property for this contact. The type of values accepted depends on the respective contactmetadata's type.

  - `Total` (integer)
    Indicates the number of objects in the Data array.


## Response 400 fields

## Response 401 fields

## Response 403 fields

## Response 404 fields

## Response 429 fields

## Response 500 fields
