cURL
curl --request GET \ --url https://api.alpharun.com/api/v1/contacts/{CONTACT_ID} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "email": "[email protected]", "phone_number": "<string>", "ext_id": "<string>", "first_name": "<string>", "last_name": "<string>", "custom_fields": [ { "key": "<string>", "value": "<string>", "type": "<string>", "display_name": "<string>" } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Contact fetched successfully
The response is of type object.
object