POST
/
api
/
v1
/
merchants
/
payout
/
fetch
curl --request POST \
  --url https://payvra.com/api/v1/merchants/payout/fetch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "payoutId": "<string>"
}'
{
  "id": "<string>",
  "wallet": {
    "merchantId": "<string>",
    "currency": {
      "symbol": "<string>"
    }
  },
  "network": {
    "network": "<string>"
  },
  "status": "PROCESSING",
  "address": "<string>",
  "txHash": "<string>",
  "amount": 123,
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
payoutId
string
required

ID of the payout to fetch

Response

200
application/json
Payout retrieved successfully
id
string

Unique identifier of the payout

wallet
object
network
object
status
enum<string>
Available options:
PROCESSING,
CONFIRMING,
COMPLETED,
REJECTED
address
string
txHash
string | null
amount
number
createdAt
string