curl --request GET \
--url https://app.replyify.ai/api/clients \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"service_description": "<string>",
"calendar_link": "<string>",
"auto_send_enabled": true,
"auto_send_delay_minutes": 123,
"auto_draft_enabled": true,
"created_at": "<string>"
}
]
}Retrieve all clients in your workspace
curl --request GET \
--url https://app.replyify.ai/api/clients \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"service_description": "<string>",
"calendar_link": "<string>",
"auto_send_enabled": true,
"auto_send_delay_minutes": 123,
"auto_draft_enabled": true,
"created_at": "<string>"
}
]
}Show Client object
curl -X GET "https://app.replyify.ai/api/clients" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"data": [
{
"id": "client_xyz789",
"name": "Acme Corp",
"service_description": "B2B SaaS for project management. We help teams ship faster.",
"calendar_link": "https://calendly.com/acme/30min",
"auto_send_enabled": false,
"auto_draft_enabled": true,
"created_at": "2025-01-15T10:00:00Z"
}
]
}