Authentication
Authentication with email and password
POST
https://api.tiledesk.com/v3/auth/signin
Allows to authenticate an agent using email and password.
Headers
Name | Type | Description |
---|---|---|
Content-Type | string | use "application/json" value |
Request Body
Name | Type | Description |
---|---|---|
string | the user email address | |
password | string | the user password |
Anonymous authentication for a user
POST
https://api.tiledesk.com/v3/auth/signinAnonymously
Allows a user to authenticate anonymously on the system.
Headers
Name | Type | Description |
---|---|---|
Content-Type | string | use "application/json" value |
Request Body
Name | Type | Description |
---|---|---|
id_project | string | the project to which the user belongs |
firstname | string | the user firstname |
lastname | string | the user password |
string | the user email | |
attributes | object | the user custom attributes |
Custom authentication for a user
POST
https://api.tiledesk.com/v3/auth/signinWithCustomToken
Allows to authenticate with a custom JWT token.
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Custom JWT Authorization token. |
Example:
You can find here How to Generate a Custom Authentication Token
Last updated