GET
/
contacts
/
{CONTACT_ID}
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>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

Contact fetched successfully

The response is of type object.