特定のトークン販売用にNMKR Pay Linkを作成する
NMKR Payで特定のトークン販売用の支払いリンクを作成する
/v2/CreatePaymentTransactionCurlのリクエスト
curl --request POST \
--url https://studio-api.nmkr.io/v2/CreatePaymentTransaction \
--header 'Content-Type: application/json' \
--header 'authorization: <your API Key>' \
--data '{
"projectUid": "9e2d000a-ed53-4db4-819b-25cdab41fd47",
"paymentTransactionType": "nmkr_pay_specific",
"customProperties": {},
"paymentgatewayParameters": {
"mintnfts":{
"reserveNfts": [
{
"nftUid": "5c810e70-dc0e-40ff-98d0-67742f95918b",
"tokencount": 1
}
]
}
},
"customerIpAddress": "1.1.1.1"
}'応答
最終更新