Skip to main content

delete_content_standards

Delete a content standards configuration. Response time: < 500ms

Request

ParameterTypeRequiredDescription
standards_idstringYesID of the standards configuration to delete

Example Request

{
  "standards_id": "nike_emea_safety"
}

Response

Success Response

{
  "deleted": true,
  "standards_id": "nike_emea_safety"
}

Error Responses

Not Found:
{
  "errors": [
    {
      "code": "STANDARDS_NOT_FOUND",
      "message": "No standards found with ID 'invalid_id'"
    }
  ]
}
Standards In Use:
{
  "errors": [
    {
      "code": "STANDARDS_IN_USE",
      "message": "Cannot delete standards 'nike_emea_safety' - currently referenced by active media buys"
    }
  ]
}
Standards cannot be deleted while they are referenced by active media buys. Use list_content_standards to identify usage, or archive standards by setting an expiration date rather than deleting.