Create contact
POST/createcontact
Create contact
Request
Header Parameters
x-api-token stringrequired
Example: opensign.xxxx
- application/json
Body
required
provide below parameter to create contact
Name stringrequired
Email stringrequired
Phone stringrequired
Responses
- 200
- 404
- 405
Contact created successfully!
- application/json
- Schema
- Example (from schema)
Schema
code number
message string
result
object
objectId string
{
"code": 200,
"message": "Contact created successfully!",
"result": {
"objectId": "Phck1hoJ2d"
}
}
Something went wrong, please try again later!
- application/json
- Schema
- Example (from schema)
Schema
code number
message string
{
"code": 404,
"message": "Something went wrong, please try again later!"
}
Invalid API Token!
- application/json
- Schema
- Example (from schema)
Schema
code number
message string
{
"code": 405,
"message": "Invalid API token!"
}
Loading...