Appearance
Clients
List Clients
http
GET /api/clientsList clients for a partner. Requires authentication.
Create Client
http
POST /api/clientsCreate new client. Requires authentication.
Request Body
json
{
"name": "string",
"email": "string",
"phone": "string",
"partner_id": "number"
}Update Client
http
PUT /api/clients/{id}Update client information. Requires authentication.
Request Body
json
{
"name": "string",
"email": "string",
"phone": "string"
}