Skip to content

Delete Channel Type

POST/web/v1/notification-channel-types/command/deleteWEB

Deletes a notification channel type by its business ID.

Authentication

Requires a valid JWT token and Turnstile verification. Gateway validation: enableJwtToken=true, enableTurnstile=true.

Request Parameters

Request Body

TypeDeleteRequest:

NameTypeRequiredInDescription
bizIdstringYesbodyType business ID to delete

Success Response

Success200
{
  "code": "2000",
  "message": "SUCCESS",
  "data": null
}

Error Responses

CodeDescription
4000Validation error (missing bizId)
4010Unauthorized (invalid or missing JWT token)
4030Turnstile verification failed
4040Channel type not found

Notes

  • This operation is permanent and cannot be undone.
  • Ensure no channels reference this type before deleting.

Internal Documentation