Cancel organization application

DELETE /organizations/applications/{application-id}

Cancel a pending organization application. This sets the application status to CANCELLED and can typically only be performed by the user who submitted the application.

Required Permissions:

  • Resource permission: ACCESS on the specific application

Business Rules:

  • Application must be in PENDING status
  • Only the submitter or users with application access can cancel
  • Cancellation is permanent and cannot be undone

Path parameters

  • application-id string Required

    External ID of the application to cancel

    Minimum length is 36, maximum length is 36. Format should match the following pattern: ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$.

Responses

  • 200 application/json

    Application cancelled successfully

    Hide response attribute Show response attribute object
    • message string
  • 400
  • 401
  • 403
  • 404
  • 409
  • 500
DELETE /organizations/applications/{application-id}
curl \
 --request DELETE 'http://api.example.com/organizations/applications/123e4567-e89b-12d3-a456-426614174000'
Response examples (200)
{
  "message": "Application cancelled successfully"
}