Client Contact
| Property | Type | Description | Information |
|---|---|---|---|
id | int | Identifier | Unique for single Client contract. |
email | string | Email of contact | |
client_id | int | Unique for single Client. | |
is_active | bool | Is active flag. | |
is_primary | bool | Is primary flag. | |
created_at | date | Client creation date | Date of Client creation |
updated_at | date | Client latest update date | Date of latest Client update |
Example:
{
"id": 1,
"client_id": 2,
"email": "a@simplo.cz",
"is_active": true,
"is_primary": false,
"_links": [
{
"href": "/api/v0/client-contacts/1",
"rel": "self",
"type": "GET"
}
]
}