Make transfer
For any new deployments, the recommendation is to use the enhanced Payment methods API instead of the Transfer funds endpoint described in this guide. All new feature developments will be available only in the Payment methods API. For more information, contact your Pismo representative.
API reference
You can make a transfer by using the following endpoint. For more information, go to the API reference.
POST <URL>payments/v1/payments
Transfer (P2P)
To perform a transfer of funds between two accounts inside the Pismo platform using the account balance:
- in the
fromobject, provide theaccount idof the source Pismo account. - in the
toobject, provide theaccount idof the destination Pismo account.

| Request payload | Response |
|---|---|
| (A) - from | (H) - event_date |
| (B) - to | (I) - authorization_id |
| (C) - account id | |
| (D) - amount | |
| (E) - currency | |
| (F) - payment method | |
| (G) - metadata |
Sample payload request
{
"tracking_id":"2436f48b-d57d-472c-aea4-47581a492502",
"descriptor":"P2P payment",
"from":[
{
"amount":150,
"currency":"USD",
"account":{
"id":125487
}
}
],
"to":[
{
"account":{
"id":126789
}
}
],
"metadata":{
"source":"account balance",
"message":"Sunday's barbecue share"
}
}
Sample response
{
"authorization_id": 31042116,
"authorization_ids": {
"credit": 31042117,
"debit": 31042116
},
"available_credit_limit": 1874.68,
"event_date": "2022-01-12T12:16:17.646Z",
"tracking_id": "b970c8a9-5ec9-4e46-8c0d-f411e0bd6ce7"
}
Response details
| Field | Type | Description |
|---|---|---|
tracking_id | string | The identifier provided or the one generated by Pismo. |
event_date | string | The date and time of the moment the transaction was successfully made, in UTC-0. |
authorization_ids | object | The credit and debit authorization identifiers. |
authorization_ids.credit | number | The credit authorization identifier. |
authorization_ids.debit | number | The debit authorization identifier. |
metadata | object | The metadata returned from the acquirer, if applicable. |
Transfer from card
To perform a transfer from a card that was previously registered in the wallet to an account within the Pismo platform, you must:
- in the
fromobject, provide the card's unique identifier,card_uuid, and theaccount idthat the card is bound to. - in the
toobject, provide theaccount idof the destination Pismo account.

| Request payload | Response |
|---|---|
| (A) - from | (H) - event_date |
| (B) to | (I) - authorization_id |
| (C) account id | |
| (D) amount | |
| (E) currency | |
| (F) payment method | |
| (G) metadata |
Sample payload request
{
"descriptor": "P2P payment with card",
"from": [
{
"amount": 150,
"currency": "USD",
"card": {
"id": "f45dbe01-4109-11ea-ab1d-3286e4ea7ade",
"account_id": 5487
}
}
],
"to": [
{
"account": {
"id": 126789
}
}
],
"metadata": {
"source": "account balance",
"message": "Sunday's barbecue share"
}
}
Sample response
{
"authorization_id": 31042111,
"authorization_ids": {
"credit": 31042112,
"debit": 31042111
},
"event_date": "2022-01-12T12:11:58.952Z",
"metadata": {
"authorization_code": "154856",
"nsu": "893681195173",
"tid": "13042201120912190001"
},
"tracking_id": "1641989519"
}
Cash-in
A cash-in operation moves funds from an external party into an account on the Pismo platform. To perform cash-in operations, you need to:
- in the
toobject, provide theaccountobject that contains a valid Pismo account id. - in the
fromobject, provide thecustom_infoobject that contains thetypeof the operation.

| Request payload | Response |
|---|---|
| (A) - to | (F) - event_date |
| (B) - account id | (G) - descriptor |
| (C) - account balance | (H) - metadata |
| (D) - descriptor | (I) - authorization_id |
| (E) - amount |
Sample payload request
{
"descriptor": "BANK TRANSFER",
"from": [
{
"custom_info": {
"type": "CASHIN",
"external_id": "be6474e8-b849-4213-9e1f-bdf619a27a63"
}
}
],
"to": [
{
"amount": 150,
"currency": "USD",
"account": {
"id": 105708
}
}
],
"metadata":{
"sender": "Andrew Foster",
"bank": "OneBank",
"branch_code": "0089",
"account_id": "13000-7"
}
}
Sample response
{
"authorization_id": 31042107,
"authorization_ids": {
"credit": 31042107,
"debit": null
},
"available_credit_limit": 1200.00,
"event_date": "2022-01-12T12:06:06.377Z",
"status_code": 1,
"tracking_id": "63c8f39c-6a79-4250-ad33-34b89f28deff"
}
Cash-out
To perform cash-out operations using the account balance, you need to:
- in the
fromobject, provide theaccountobject that contains a valid Pismo account id. - in the
toobject, provide thecustom_infoobject that contains thetypeof the operation you are performing.
The custom_info object allows multiple possibilities, such as withdrawing funds, topping up mobile devices, paying registered bills, and more.

| Request payload | Response |
|---|---|
| (A) - from | (F) - event_date |
| (B) - currency | (G) - descriptor |
| (C) - amount | (H) - metadata |
| (D) - payment method | (I) - authorization_id |
| (E) - entry_mode |
Sample payload request
{
"descriptor": "ATM's withdrawal",
"from": [
{
"amount": 50.00,
"currency": "USD",
"account": {
"id": 125487,
}
}
],
"to": [
{
"custom_info": {
"type": "WITHDRAWAL",
"external_id": "2343646-2139867-09897776"
}
}
]
}
Sample response
{
"authorization_id": 31042110,
"authorization_ids": {
"credit": null,
"debit": 31042110
},
"available_credit_limit": 1875.68,
"event_date": "2022-01-12T12:09:26.627Z",
"tracking_id": "eea76b3c-46c0-4c6c-9312-27e9ee48acbf"
}
Updated about 1 year ago