Documentation
API references, design guidelines, and system documentation.
📁 Files
Design guidelines and reference documents
Team Manager
https://team.sardio.com/apiGET
/teamGet all team members
Response:
{ success: true, count: 9, data: [...] }GET
/team/:idGet specific team member
Response:
{ success: true, data: {...} }GET
/zonesGet all zones/departments
Response:
{ success: true, data: [...] }GET
/clientsGet client assignments
Response:
{ success: true, data: [...] }GET
/capacityGet team capacity data
Response:
{ success: true, data: {...} }Sales
https://sales.sardio.com/apiGET
/pipelineGet full pipeline with deals
Response:
{ success: true, stages: [...], deals: [...] }POST
/pipeline/dealsCreate new deal
Body:
{ name, value, stage, client }Response:
{ success: true, deal: {...} }PATCH
/pipeline/deals/:idUpdate deal stage/value
Body:
{ stage, value }Response:
{ success: true, deal: {...} }Client Hub
https://clients.sardio.com/apiGET
/clientsGet all clients
Response:
{ success: true, clients: [...] }GET
/clients/:idGet specific client config
Response:
{ success: true, client: {...} }POST
/clientsCreate new client
Body:
{ name, slug, brandColor, allowedEmails }Response:
{ success: true, client: {...} }GET
/ga4/:clientGet GA4 analytics for client
Response:
{ success: true, data: {...} }GET
/sheets/:clientGet Google Sheets data
Response:
{ success: true, data: [...] }POST
/chatSend message to client chat
Body:
{ clientId, message }Response:
{ success: true, response: "..." }POST
/deployDeploy client dashboard
Body:
{ clientId, environment }Response:
{ success: true, url: "..." }