Create Contact
POST/createcontact
The Create Contact API allows you to effortlessly create new contacts that can act as signers for your important documents.
Request
- application/json
Body
required
Provide below parameter to create contact
name stringrequired
email stringrequired
phone stringrequired
Responses
- 200
- 400
- 401
- 405
Contact created successfully!
- 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 already exists!
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "Contact already exists!"
}
Invalid API Token!
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "Invalid API token!"
}
Loading...