Appearance
Get Token
Request Method
http
POST /api/login
IMPORTANT
This API allows user to login to WMG System
For access to WMG APIs, you need first to use the login API. This will return you with a token and henceforth for all further request you should pass it in the request header. For example,
Authorization: Bearer Token
Header
Field | Description |
---|---|
Content-Type | application/json |
Parameter
Field | Mandatory | Type | Description | Length |
---|---|---|---|---|
UserName | Y | string | Account’s Username E-mail format | <=128 |
Password | Y | string | Account’s Password To be assign by WMG | <=64 |
Request
json
{
"UserName": "xxxxxxx",
"Password": "MvhYesfnnPaaqUJcgUoJvgEglasWCgIdpuB"
}
Response(Success)
json
{
"Code": 0,
"Message": "Success",
"Data": {
"Token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MTAzODExMzIsIm5iZiI6MTcxMDM4MTEzMiwiaWQiOjJ9.CoafVH75GhgwJjgBZEfqqISY45mgRBb-4La4qdCH2p0",
"Expire": 1710409932
}
}
Response(Fail)
json
{
"Code": 1,
"Message": "Invalid Email or Key.",
"Data": []
}