Skip to content

Disable Channel Type

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

Disables a notification channel type. No new channels of this type can be created while disabled.

Authentication

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

Request Parameters

Request Body

TypeStatusRequest:

NameTypeRequiredInDescription
bizIdstringYesbodyType business ID to disable

Success Response

Success200
{
  "code": "2000",
  "message": "SUCCESS",
  "data": {
    "bizId": "ct_abc123",
    "typeCode": "EMAIL",
    "typeValue": 80010101,
    "typeName": "Email Notification",
    "typeDescription": "Standard email delivery",
    "typeStatus": "DISABLED",
    "displayOrder": 0,
    "iconUrl": null,
    "extraConfig": null,
    "createdAt": "2026-03-21T00:00:00Z",
    "updatedAt": "2026-03-21T01:00:00Z"
  }
}

Error Responses

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

Notes

  • The channel type status changes to DISABLED.
  • Existing channels of this type are not affected; only new channel creation is blocked.

Internal Documentation