Starter Guide
If you are using Lavel / PHP you can find, a sample project here : https://github.com/OursBlanc-io/samples.smartxsp.io
Identification on the SmartXSP platform
POST
https://my.smartxsp.io/api/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