Get service status

GET /api/user-assets/service-status

Get user assets service status.

Responses

  • 200 application/json

    An object containing the service status and metadata.

    Hide response attributes Show response attributes object
    • status string("ready") | string("not_configured") Required

    • allowUploadMimeTypes array[string]

      Values are image/jpeg, image/png, image/gif, image/vnd.microsoft.icon, image/x-icon, image/svg+xml, image/tiff, image/webp, image/bmp, or application/zip.

    • maxUploadFileSize number
  • 401

    Unauthorized

  • 403

    Forbidden

GET /api/user-assets/service-status
curl \
 --request GET 'https://[tenant_id].logto.app/api/user-assets/service-status' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "status": "string",
  "allowUploadMimeTypes": [
    "image/jpeg"
  ],
  "maxUploadFileSize": 42.0
}