Quick Start
Get your API keys
Currently we offer token based authentication for our Broadcasting and Conversation.
You make a Sign In Request, which will return a token, which you can use to make additional authorised calls.
The best way to interact with our API is to use one of our official libraries:
Get Channel360 API Token
To get the API Token, send a Sign-In request to our new Channel360 Cloud API.
API call for signing in a new account.
Registered password
Something23!
POST /api/users/signin HTTP/1.1
Host: www.channel360.co.za
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 57
{
"email": "[email protected]",
"password": "Something23!"
}
Sign-in Successfull
{
"user": {
"email": "[email protected]",
"firstName": "John",
"lastName": "Doe",
"username": "JohnDoe",
"version": 0,
"id": "631082680d5cc30019ff02b0"
},
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjYzMDg4MWUwNTA4ZjIwMDAxYzA3NDU1OSIsImVtYWlsIjoiam9obkBkb2UuY29tIiwiaWF0IjoxNjYyMDM5NjIwfQ.ehFb0N29xnJbScuMOTgoW4QlYgIqZlHLPj8nqy9oXGE"
}
Get Session Token for AgentChat API
For our V1 AgentChat API, you will need to make a Sign-In request to your dedicated instance
The API call to logon the agent and return a session token
The current version number
{{BUILD_VERSION}}
The unique email address and the username the agent will use to login
The password corresponding to the unique email address
POST /api/AgentLogon HTTP/1.1
Host: agentchat.abcsoftware.dnsalias.com
Content-Type: application/json
Accept: */*
Content-Length: 62
{
"EmailAddress": "[email protected]",
"Password": "123smith$$"
}
No content
Last updated
Was this helpful?