Starter Guide

Authentification

Identification on the SmartXSP platform

POST https://api.smartxsp.io/login

This method will allow you to identify yourself on the SmartXSP platform. A dedicated service account / user account is generally used to perform these operations. If you do not have such an account, contact your sales contact at OursBlanc or [email protected] directly.

At the end of this operation, you will obtain a token allowing you to execute all the following requests.

Query Parameters

Name
Type
Description

email*

String

The email address of your service account

password*

String

The password of your service account

{
    "success":true,
    "data":{
        "token":"your_token",
        "name":"user_name"
    },
    "message":"User login successfully."
}

Last updated