Get captcha provider

GET /api/captcha-provider

Get the captcha provider, you can only have one captcha provider.

Responses

  • 200 application/json

    Captcha provider.

    Hide response attributes Show response attributes object
    • tenantId string Required

      Maximum length is 21.

    • id string Required

      Minimum length is 1, maximum length is 128.

    • config object Required

      One of:
    • createdAt number Required
    • updatedAt number Required
  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    Captcha provider not found.

GET /api/captcha-provider
curl \
 --request GET 'https://[tenant_id].logto.app/api/captcha-provider' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "tenantId": "string",
  "id": "string",
  "config": {
    "type": "string",
    "siteKey": "string",
    "secretKey": "string"
  },
  "createdAt": 42.0,
  "updatedAt": 42.0
}