GET method to show a contact.
Name | Description |
---|---|
account_id required | Your account unique identifier to access API. |
contact_id required | Id of the contact to be showed |
GET
/v2/account/:account_id/contact/:contact_id
Accept: application/json
Authorization: Token token={account.secret}
Content-Type: application/json
200
{
"id": "550aac3da096734ce5000001",
"name_first": "John",
"name_last": "Doe",
"phone_countrycode": "44",
"phone_number": "7712345678",
"email": "johndoe@example.com",
"tags": [
"tag1",
"tag2"
]
}