Delete Channel Type
POST
/web/v1/notification-channel-types/command/delete WEBDeletes a notification channel type by its business ID.
Required Headers
| Header | Example Value | Description |
|---|---|---|
| Content-Type | application/json | Request content type |
| Accept | application/json | Expected response type |
| X-Client-Hash | Client device fingerprint | |
| Accept-Language | en, zh, zh-Hant, ja, vi | Response language (default: en) |
| Authorization | Bearer | JWT access token |
Request Parameters
Request Body
TypeDeleteRequest:
| Name | Type | Required | In | Description |
|---|---|---|---|---|
bizId | string | Required | body | Type business ID to delete |
Success Response
Success 200
{
"code": "2000",
"message": "SUCCESS",
"data": null
}Error Responses
| Code | Description |
|---|---|
4000 | Validation error (missing bizId) |
4010 | Unauthorized (invalid or missing JWT token) |
4030 | Turnstile verification failed |
4040 | Channel type not found |
Notes
- This operation is permanent and cannot be undone.
- Ensure no channels reference this type before deleting.