1. Registration
  • API Overview
  • Registration
    • Create/Update Registration
      POST
    • Delete Registration
      DELETE
    • Get Registrations
      GET
  • Event
    • Get Event
      GET
  • Webhooks
    • Create webhook
      POST
    • Update webhook
      PUT
    • Delete webhook
      DELETE
    • List webhook
      GET
  1. Registration

Delete Registration

Prod Env
Prod Env
DELETE
{{baseUrl}}/registration/{organization_id}/{event_id}/{registratoin_id}
Delete api can delete any registration in the allowed event within the authroized organization

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Header Params

Body Params application/json

Examples

Responses

🟠422
application/json
Bodyapplication/json

🟢200
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff --request DELETE '{{baseUrl}}/registration/12221/111/6951284954365ea91b0a7e32' \
--header 'Accept-Encoding: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'
Response Response Example
422 - Delete Registration
{
    "message": "Registration delete failed",
    "errors": {
        "message": "Registration not found"
    }
}
Modified at 2026-08-19 12:18:43
Previous
Create/Update Registration
Next
Get Registrations
Built with