Sign Customiser

Dry-runs the restore without changing anything, returning a 200 verdict. Nothing is written and no idempotency key is consumed.

POST/api/v3/customisers/{customiser_id}/validate-restore

Overview

Like the restore itself, this is one of the two operations that address a deleted customiser. Requires customisers:write.

Authorisation

Bearer token required. Include it in theAuthorization header.

Required scope: customisers:write

Path parameters

customiser_idstringpathrequired

The deleted customiser's id.

Example: 1

Validate a customiser restore
curl https://web.signcustomiser.com/api/v3/customisers/1/validate-restore \
  --request POST \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
Response
{
  "data": {
    "object": "customiser_validation",
    "operation": "restore",
    "customiser_id": 42,
    "valid": true
  },
  "links": {
    "self": "https://web.signcustomiser.com/api/v3/customisers/42/validate-restore",
    "documentation": "https://www.signcustomiser.com/help/api/"
  },
  "meta": {
    "api_version": "v3",
    "request_id": "req_01jz9x2k7c8f3m5n6p7q8r9s0t"
  }
}