Public
Documentation Settings

Realtimme API

The following are the Realtimme APIs that are allowed for authorized users to access.

AUTHORIZATIONBearer Token
Token

{{token}}

Authentication APIs

AUTHORIZATIONBearer Token
This folder is using Bearer Token from collectionRealtimme API

POSTAuthentication Step

https://api.realtimme.io/auth/connect/token

This API is to retrieve the Realtimme authentication token. Supply your username and password with the desired company id that the user has access to.

HEADERS
Content-Type

application/x-www-form-urlencoded

Bodyurlencoded
client_id

realtimme.api

client_secret

v1u2yvAUxRJwJxk

grant_type

password

username

1@demo

password

1

scope

realtimmeauth

companyid

DEMO

Example Request
curl
curl --location 'https://api.realtimme.io/auth/connect/token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'client_id=realtimme.api' \
--data-urlencode 'client_secret=v1u2yvAUxRJwJxk' \
--data-urlencode 'grant_type=password' \
--data-urlencode 'username=1@demo' \
--data-urlencode 'password=1' \
--data-urlencode 'scope=realtimmeauth' \
--data-urlencode 'companyid=DEMO'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POSTCentral Auth Login

https://api.realtimme.io/api/auth
AUTHORIZATIONBearer Token
This request is using Bearer Token from collectionRealtimme API
HEADERS
Content-Type

application/json

Bodyraw
{
    "Username": "rbc@realtimme",
    "Password": "rbc@2334"
}
Example Request
curl
curl --location 'https://api.realtimme.io/api/auth' \
--header 'Content-Type: application/json' \
--data-raw '{
    "Username": "rbc@realtimme",
    "Password": "rbc@2334"
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

Master APIs

AUTHORIZATIONBearer Token
This folder is using Bearer Token from collectionRealtimme API