For the complete documentation index, see llms.txt. This page is also available as Markdown.

Auth

Login and get JWT token

Get token

post
Body

AuthLogin

cidstringRequired

Customer number

Example: 1000011
apicodestringRequired

Apicode

Example: password123
Responses
201

Successfull login. Token will expire in 2 hours

application/json

AuthToken

tokenstringOptionalExample: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWV9.TJVA95OrM7E2cBab30RMHrHDcEfxjoYZgeFONFh7HgQ
post/token
POST /rest/token HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 41

{
  "cid": "1000011",
  "apicode": "password123"
}
{
  "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWV9.TJVA95OrM7E2cBab30RMHrHDcEfxjoYZgeFONFh7HgQ"
}

Last updated

Was this helpful?