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

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/"ce2c46084a5a541a17a5b22088cae1d3"
cache-control: max-age=0, private, must-revalidate
x-request-id: 98925ab7-c938-44eb-b224-d40a5f0fc2fb
x-runtime: 0.006418
content-length: 133

Status

201 Created

Body

{
  "jwt": "eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjQ1LCJhdWQiOlsiYWRtaW4iXSwiZXhwIjoxNzcyMjEyMDAwfQ.plbNCrrvRFM-kE43Zm_KzgpFXJAijnlqiOODUXUzlf8"
}