Update Channel Type
POST
/web/v1/notification-channel-types/command/updateWEBUpdates an existing notification channel type. Supports partial update.
Authentication
Requires a valid JWT token and Turnstile verification. Gateway validation: enableJwtToken=true, enableTurnstile=true.
Request Parameters
Request Body
NotificationChannelTypeUpdateRequest:
| Name | Type | Required | In | Description |
|---|---|---|---|---|
bizId | string | Yes | body | Type business ID (max 64 characters) |
typeName | string | No | body | New type name (max 128 characters) |
typeDescription | string | No | body | New type description (max 512 characters) |
typeStatus | string | No | body | New status: ENABLED, DISABLED |
displayOrder | integer | No | body | New display sort order |
iconUrl | string | No | body | New icon URL (max 512 characters) |
extraConfig | string | No | body | New extra configuration as JSON string |
Success Response
Success200
{
"code": "2000",
"message": "SUCCESS",
"data": {
"bizId": "ct_abc123",
"typeCode": "EMAIL",
"typeValue": 80010101,
"typeName": "Updated Email Type",
"typeDescription": "Updated description",
"typeStatus": "ENABLED",
"displayOrder": 1,
"iconUrl": null,
"extraConfig": null,
"createdAt": "2026-03-21T00:00:00Z",
"updatedAt": "2026-03-21T01:00:00Z"
}
}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
- Only non-null fields are updated; omitted fields remain unchanged.