Get Contact
GET/contact/:contact_id
The Get Contact API allows you to retrieve details about a specific contact.
Request
Path Parameters
contact_id stringrequired
objectId of contact
Responses
- 200
- 404
- 405
successful operation
- application/json
- Schema
- Example (from schema)
Schema
objectId string
Name string
Email string
Phone string
createdAt date
updatedAt date
{
"objectId": "ph1bhx2jp",
"Name": "joe bee",
"Email": "joebee@example.com",
"Phone": "4131231231",
"createdAt": "2023-10-07T16:49:56.000Z",
"updatedAt": "2023-10-07T16:49:56.000Z"
}
Contact not found!
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "Contact not found!"
}
Invalid API Token!
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "Invalid API token!"
}
Loading...