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

Auth

Issue a short-lived JWT for API access

post
Body
apiTokenstringRequired

API token obtained from the platform admin panel

Responses
200

Success

application/json
post/public-api/v1/auth
POST /public-api/v1/auth HTTP/1.1
Host: esaas-api.eventx.io
Content-Type: application/json
Accept: */*
Content-Length: 19

{
  "apiToken": "text"
}
{
  "data": {
    "accessToken": "text",
    "userId": "123e4567-e89b-12d3-a456-426614174000",
    "expiresIn": "1h"
  }
}

Last updated