A Bearer token is a secret string sent in an HTTP request header that authenticates the user
Authentication
All endpoints require authentication using Bearer token
Did this answer your question?
😞
😐
😁
A Bearer token is a secret string sent in an HTTP request header that authenticates the user
curl -X GET "https://demoagency.agentcisapp.com/api/v2/clients" \ -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \ -H "Accept: application/json" |