Authentication API

get token

POST /api/rest/admin/auth

Pass received token to each request to private API as 'token' parameter or 'Authorization' header.

Parameters

Name Description
auth[username] Login
auth[password] Password

Request

Headers

Version: HTTP/1.0
Accept: application/json
Content-Type: application/json
Host: example.org
Cookie: 

Route

POST /api/rest/admin/auth

Body

{"auth":{"username":"test-admin","password":"password"}}

Response

Headers

X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 0
X-Content-Type-Options: nosniff
X-Permitted-Cross-Domain-Policies: none
Referrer-Policy: strict-origin-when-cross-origin
Content-Type: application/json; charset=utf-8
Vary: Accept
ETag: W/"6c21e42c506c664bd3d70ad27299d5a5"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 0a6f1a0c-c986-4ae8-9722-4052bf4daeea
X-Runtime: 0.008825
Content-Length: 133

Status

201 Created

Body

{
  "jwt": "eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjQyLCJhdWQiOlsiYWRtaW4iXSwiZXhwIjoxNzQwODUzMDI0fQ.63oPKYtVKi-qh1Netoi7mTBh_3RXPhUk_mymffzp6Nw"
}