cURL
curl --request GET \ --url https://dovetail.com/api/v1/contacts/{contact_id} \ --header 'Authorization: Bearer <token>'
{ "data": { "id": "<string>", "name": "<string>", "created_at": "<string>", "fields": [ { "label": "<string>", "value": "<string>" } ] } }
Get a contact by id.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Unique identifier of the contact.
200
The response is of type object.
object
Was this page helpful?