Update Webhook URL

Modify your existing webhook notification endpoint.

Request URI

POST /issuing/webhook/update

Request Body

Refer to : common

Biz_data :

Name
Type
Description

webhook_id*

long

Webhook ID

webhook_type*

integer

Webhook type.Refer to webhookType

webhook_url*

string(128)

Webhook URL

webhook_desc

string(128)

webhook description

Request Example

{
    "app_id": "00000000000000000",
    "partner_id": "00000000000000000",
    "sub_partner_id": "",
    "request_id": "7d69e7DB-025E-B43D-0e76-bBFfA3E1",
    "timestamp": "2025-04-07 13:57:07",
    "format": "JSON",
    "version": "2.0",
    "sign_type": "RSA",
    "biz_data": {
        "webhook_id": 3,
        "webhook_type": 2,
        "webhook_url": "https://random1744005427.com",
        "webhook_desc": "this is desc"
    },
    "random_key": "<generated_key>"
}
// The biz_data in this example needs to be encrypted!

Response

{
    "code": "10000",
    "msg": "Success"
}

Last updated

Was this helpful?