Retrieve registration settings

GET/settings/registration

Returns the registration settings of the account: public sign-up, domain restrictions, whether a document is required, and the highlight applied to users with free access.

The response includes an ETag representing the current revision. Send this value in the If-Match header when updating these settings to avoid overwriting a newer version.

AuthorizationBearer <token>

Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/settings/registration"
{  "data": {    "defaults": {},    "document": {      "required": true    },    "domain_restriction": {      "allowed": [        "string"      ],      "enabled": true    },    "highlight_free": {      "enabled": true,      "icon": "string"    },    "object": "settings",    "propagation": {},    "public_signup": {      "by_url": true,      "enabled": true,      "free_delivery_id": "string"    },    "replica": {},    "revision": "string"  }}