Rest API

Requirements

Our api needs the following requirements

myAuth : Unique and non-transferable token for authenticate requests

myCorporateToken : Unique and non-transferable token to make requests to our resources

HOST : Will be provided by Imbee

All requests must use the header "Content-Type" with value "application/json"

All requests to our API have the same response format, which is composed of the following properties:

time: time spent generating a response.

code: The generic codes are 1 if an error was detected while processing your request, or 0 if your request could be processed. There may be more error codes that will be detailed in each web services if they exist.

message: descriptive message of the webservice, it is not relevant.

body: The answer itself of the request made.

{
    "time": 0.00019,
    "code": 0,
    "message": "Ok",
    "body": {
        "data0": "value0",
        "data1": "value1"
    }
}

Generate a Access Token

Create a new web access token from a unique identifier

params:

Notes:

Request:

If no date_limit or max_retries

Response:

Create a External User

Creating a new user from a unique identifier

Request:

Response:

Create a Chat between users

Request:

Response:

Last updated