Reference / Security

Set or clear the CAPTCHA provider secret (encrypted at rest; never returned).

PUT /v1/security/captcha
Secret API key operationId: set_captcha

Authorization

Server-to-server. Send a secret key as a Bearer token plus the x-application-id header.

Request body · required

  • secret string

Responses

200 Captcha secret updated
{
  "data": {
    "configured": false
  },
  "error": {
    "code": "string",
    "message": "string"
  },
  "meta": {
    "timestamp": "string"
  },
  "success": false
}

Request

curl -X PUT "http://localhost:8080/v1/security/captcha" \
  -H "Content-Type: application/json" \
  -d '{
  "secret": "string"
}'

Try it

live request
PUT http://localhost:8080/v1/security/captcha

Request body

application/json