Delete a policy by ID

DELETE /api/v1/policy/{id}

Deletes a specific policy by ID. The policy must belong to the authenticated user's organization or be under its parent organization.

Path parameters

  • id string Required

    The unique policy number identifier

Responses

  • 200 application/json

    Policy successfully deleted

    Hide response attribute Show response attribute object
  • Not authenticated. The user must be logged in to access this endpoint.

  • Not Found. The policy does not exist or the user does not have permission to delete it.

DELETE /api/v1/policy/{id}
curl \
 -X DELETE https://ark.collegecanine.com/api/v1/policy/{id}
Response examples (200)
{
  "message": "Policy successfully deleted."
}