Get JWT with valid signature
POST
/authProvide a signature and get back a valid JWT that allows order actions
Request
Body Params application/json
signer
string
required
a string
signature
string
required
a string
message
string
required
a string
Example
{
"signer": "string",
"signature": "string",
"message": "string"
}
Request samples
Responses
Created(201)
HTTP Code: 201
Content Type : JSONapplication/json
Response 201
Data Schema
success
boolean
required
a boolean
data
object
required
token
string
required
a string
Example
{
"success": true,
"data": {
"token": "string"
}
}
Last modified: 11 days ago