Batch delete custom fonts

Delete 1-100 custom fonts in a single request. The response is always `200 OK` for a valid request body. Per-font results are reported in the `deleted` and `failed` arrays. The endpoint is idempotent: fonts that do not exist appear in `failed` with `name: "NotFound"` rather than failing the entire request. You can safely retry a partial failure by re-sending only the IDs that did not appear in `deleted`. Required scope | `sites:write`

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

site_idstringRequiredformat: "objectid"
Unique identifier for a Site

Request

Request body for bulk-deleting custom fonts

itemslist of objectsRequired

Response

Request was successful. Check deleted and failed arrays for per-item results.

deletedlist of objects
failedlist of objects

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
429
Too Many Requests Error
500
Internal Server Error