List Clients
Endpoint
GET https://api.callingly.com/v1/clients
Sample Response
[
{
"id": 123,
"name": "Client Name",
"email": "[email protected]"
}
]
Create Client
Endpoint
POST https://api.callingly.com/v1/clients
Sample Request
{
"fname": "John",
"lname": "Smith",
"company": "Smith Pools",
"email": "[email protected]",
"phone_number": "555-555-5555",
"password": "password123"
}