Refund
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
typestring · enumRequiredPossible values:
runeIdsstring[]OptionalExample:
require if refund type is "virtual_mint"
["123:345","456:123"]userAddressstringRequired
Responses
201Success
No content
post/api/refund
POST /api/refund HTTP/1.1
Host: api.bound.exchange
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 76
{
"type": "virtual_mint",
"runeIds": [
"123:345",
"456:123"
],
"userAddress": "text"
}201Success
No content
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
base64PsbtstringRequired
userAddressstringRequired
Responses
201Success
No content
post/api/refund/sign
POST /api/refund/sign HTTP/1.1
Host: api.bound.exchange
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 42
{
"base64Psbt": "text",
"userAddress": "text"
}201Success
No content
Query parameters
typestring · enumRequiredPossible values:
runeIdsstringOptionalExample:
require if refund type is "virtual_mint"
123:345,456:123userAddressstringRequired
Responses
200Success
No content
get/api/refund/calculate
GET /api/refund/calculate?type=virtual_mint&userAddress=text HTTP/1.1
Host: api.bound.exchange
Accept: */*
200Success
No content
Last updated