WebHook 활성 상태 수정
등록되어 있는 webhook리스트 중 선택 적으로 활성화를 변경 할 수 있습니다. ‘is_enabled’ 정보가 false 이면 NFT 관련 webhook이 전달되지 않게 됩니다.
PUT
https://{market-domain}/v1.0/app/nft/webhook
Headers
Name
Type
Description
Authorization*
string
Bearer {{app-access-token}}
Request Body
Name
Type
Description
webhook_id*
int64
등록된 webhook 의 ID
is_enabled
bool
변경될 활성 상태
curl --location --request PUT 'https://localhost:51071/v1.0/app/nft/webhook' --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5....' --header 'Content-Type: application/json' --data-raw '{ "webhook_id" : 8, "is_enabled" : true }'
Last updated