Account 귀속 NFT 추가 테스트
이 API는 ‘WebHook 응답 정보’ 항목에 ‘Member에게 NFT 추가’ 정보를 강제로 호출하기 위한 테스트 API 입니다.
POST
https://{market-domain}/v1.0/app/test/member/nft
Headers
Name
Type
Description
Authorization*
string
Bearer {{app-access-token}}
Request Body
Name
Type
Description
au_id
int64
계정 로그인/가입 시 발급 받은 au_id
product_id
int64
테스트를 위해 별도 제공된 상품 id
inno_id
string
inno 플랫폼 유저 id (최대 64byte)
{
"return": 0,
"message": "success",
"value": {
"au_id": 5,
"product_id": 55,
"basecoin_id": 1,
"wallet_address": "0x52D7A9eaF6a3E625B7D070d16A82990152DE37FC",
"coin_id": 4,
"previous_quantity": 0.114215057,
"adjust_quantity": -0.0001,
"quantity": 0.11411505699999999,
"tx_hash": "sale_test",
"nft_id": 2360,
"transfer_id": 18,
"nft_pack_id": 104,
"is_auction": false,
"buyer_inno_uid": "sale_test_innouid",
"seller_inno_uid": "ONBUFF",
"purchase_type": 1
}
}
curl --location --request POST 'https://localhost:51071/v1.0/app/test/member/nft' --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cC.....' --header 'Content-Type: application/json' --data-raw '{ "au_id" : 5, "product_id" : 41 }'
Last updated