Deletes contact
DELETE/contact/:contact_id
delete a contact
Request
Path Parameters
contact_id stringrequired
Provide objectId of contact to delete
Header Parameters
x-api-token stringrequired
Example: opensign.xxxx
Responses
- 200
- 404
- 405
Contact deleted successfully!
- application/json
- Schema
- Example (from schema)
Schema
code number
message string
{
"code": 200,
"message": "Contact deleted successfully!"
}
Contact not found!
- application/json
- Schema
- Example (from schema)
Schema
code number
message string
{
"code": 404,
"message": "Contact not found!"
}
Invalid API Token!
- application/json
- Schema
- Example (from schema)
Schema
code number
message string
{
"code": 405,
"message": "Invalid API token!"
}
Loading...