Generate a JWT Token (time limited)

post/accountmanager.getjsonwebtoken/{minutes}

Generates and returns an expiring JSON Web Token for the authenticated user. Used for integration purposes.

Information: The request header must contain real credentials (i.e. not just a session cookie).

Securitybasic or X-PriceFx-jwt
Request
path Parameters
minutes
required
string

The number of minutes in which the token expires.

Responses
200

OK

Response Schema: application/json
object
node
string non-empty
csrfToken
string non-empty
data
Array of objects
status
number
Request samples
Response samples
application/json
{
  • "response": {
    • "node": "string",
    • "csrfToken": "string",
    • "data": [
      • { }
      ],
    • "status": 0
    }
}