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