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

Mobile App

List the current user's push notification tokens

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

Successful response

application/json
resultsstring[]Required

The user's push tokens

get/mobile-app/tokens
GET /rest/mobile-app/tokens HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "results": [
    "text"
  ]
}

Register a push notification token

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
pushTokenstring · min: 1 · max: 100Required

Expo push token

Responses
200

Successful response

application/json
successbooleanRequired

Always true

post/mobile-app/tokens
POST /rest/mobile-app/tokens HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 20

{
  "pushToken": "text"
}
{
  "success": true
}

Unregister push notification tokens

delete
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
pushTokenstring · min: 1 · max: 100Optional
Responses
200

Successful response

application/json
successbooleanRequired

Always true

delete/mobile-app/tokens
DELETE /rest/mobile-app/tokens HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "success": true
}

Last updated