const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.valox.co/api/v1/ibans/orders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "<string>",
"kind": "redeem",
"currency": "eur",
"amount": "<string>",
"address": "<string>",
"counterpart": {
"details": {
"name": "<string>"
},
"identifier": {
"standard": "iban",
"iban": "<string>"
}
},
"state": "placed",
"meta": {
"placedAt": "2023-11-07T05:31:56Z"
},
"memo": "<string>"
}
]
}Returns a list of IBAN orders associated with the authenticated user.
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.valox.co/api/v1/ibans/orders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "<string>",
"kind": "redeem",
"currency": "eur",
"amount": "<string>",
"address": "<string>",
"counterpart": {
"details": {
"name": "<string>"
},
"identifier": {
"standard": "iban",
"iban": "<string>"
}
},
"state": "placed",
"meta": {
"placedAt": "2023-11-07T05:31:56Z"
},
"memo": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A list of Monerium IBAN orders
Show child attributes
Unique identifier for the order.
Type of order.
redeem, issue Currency of the order.
eur, usd, gbp, isk Amount of the transaction in string format.
Ethereum address associated with the order.
Counterparty details.
Show child attributes
State of the order.
placed, pending, processed, rejected Optional memo for the order.