This API call is used to create a contact.
Resource URL
/api/1.0/contact/create
Resource Information
| Response formats | JSON |
| Response code | 201 |
| Requires authentication? | Yes |
| HTTP Method | POST |
Parameters
| Name | Type | Default Value | Validation | Description |
name optional | string | '' | length[3, 511] | name of the contact. |
required | string | - | email of the contact. |
Example Request URL
Example Result
{
"id": <uuid>,
"name": <string>,
"email": <string>,
"created": <timestamp>,
"has_key": <bool>
}
0 Comments