Execute Transfer

A resource used to transfer from an internal wallet to another internal wallet

PUT https://example.com/v1/transfers

Headers

Name
Type
Description

X-Pouch-Api-Key*

string

X-Pouch-Signature*

string

Request Body

Name
Type
Description

referenceId*

string

format: uuid

fromWalletId*

string

format: uuid

toWalletId*

string

format: uuid

currency*

string

enum: SAT

amount*

integer

min value: 1

description

string

max length: 128

{
  "data": {
    "id": "41e65ee8-688d-4232-be2e-64fe58332ae9",
    "walletId": "4e4f89fe-f0eb-44be-bd0b-28b36d18c20f",
    "referenceId": "23ab8949-2414-442e-870e-79507748dc34",
    "currency": "SAT",
    "type": "internal-debit",
    "status": "completed",
    "description": null,
    "internalReferenceId": null,
    "paymentRequest": null,
    "transactionHash": null,
    "amount": 500,
    "fees": [],
    "total": 500,
    "remarks": null,
    "createdAt": "2023-11-24T04:33:56.396Z",
    "updatedAt": "2023-11-24T04:33:57.343Z"
  }
}

Last updated