WebHook 리스트 조회

GET https://{market-domain}/v1.0/app/nft/webhook

Query Parameters

Name
Type
Description

page_offset*

int64

page 번호 (MIN : 1 ~ N)

page_size*

int64

한 page 크기 (MIN : 1 ~ MAX : 200)

Headers

Name
Type
Description

Authorization*

string

Bearer {{app-access-token}}

{
    "return": 0,
    "message": "success",
    "value": {
        "page_offset": 0,
        "page_size": 10,
        "webhooks": [
            {
                "webhook_id": 1,
                "webhook_name": "my nft webhook 1",
                "app_id": 1,
                "webhook_url": "https://myweb/1",
                "is_enabled": true
            },
            {
                "webhook_id": 2,
                "webhook_name": "my nft webhook 2",
                "app_id": 1,
                "webhook_url": "https://myweb/2",
                "is_enabled": true
            }
        ]
    }
}

curl --location --request GET 'https://localhost:51071/v1.0/app/nft/webhook?page_offset=0&page_size=10' --header 'Authorization: Bearer eyJhbGciOiJIUzI1......'

Last updated