Sign Customiser

Dry-runs the delete: a font with no typeface answers the identical 404 the delete would, and one with a file returns a 200 verdict. Nothing is written, nothing is removed, and no idempotency key is consumed.

POST/api/v3/customisers/{customiser_id}/fonts/{font_id}/file/validate-delete

Overview

The verdict is advisory. Requires customisers:write. A valid verdict is not an endorsement: deleting a font's file is always allowed and always stops the font rendering. See the delete operation.

Authorisation

Bearer token required. Include it in theAuthorization header.

Required scope: customisers:write

Path parameters

customiser_idstringpathrequired

The customiser id.

Example: 1

font_idstringpathrequired

The font id.

Example: 11

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