Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 23 Next »

In this document we are going to see the available APIs and how they work.

Índice

Base url

Collection Postman

Postman: https://www.getpostman.com/collections/8b4bc8199181553a2ef0

/user/login

Pathname:

{{baseUrl}}/api/v1/user/login

Method: POST

Header:

Accept: 'application/json'
Content-Type: 'application/json'

Request params:

Parameter

type

Description

username

String

Request the Chat-Tonic team.

password

String

Request the Chat-Tonic team.

Body:

{
  "username": "user",
  "password": "password"
}

Response:

Return accessToken.

{
    "id": "5d7fda27f02d5c4e24374cf2",
    "username": "demo@chat-tonic.com",
    "appCodename": "codename",
    "token": "eyJhbGciOiJFUzUxMiIsInR5cCI6IkpXVCJ9....",
    ...
}


  • No labels