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
- 400
- 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"
}
Something went wrong, please try again later!
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "Something went wrong, please try again later!"
}
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...