diff --git a/postman/TransferService-v1.json b/postman/TransferService-v1.json index cf93366..38eb474 100644 --- a/postman/TransferService-v1.json +++ b/postman/TransferService-v1.json @@ -123,7 +123,7 @@ { "key": "id", "value": "", - "description": "Unique identifier of the transaction." + "description": "The unique identifier of the transaction." } ], "query": [ diff --git a/postman/TransferService-v2.json b/postman/TransferService-v2.json index 81d1676..04cc05f 100644 --- a/postman/TransferService-v2.json +++ b/postman/TransferService-v2.json @@ -123,7 +123,7 @@ { "key": "id", "value": "", - "description": "Unique identifier of the transaction." + "description": "The unique identifier of the transaction." } ], "query": [ diff --git a/postman/TransferService-v3.json b/postman/TransferService-v3.json index 8d4700e..d65d48f 100644 --- a/postman/TransferService-v3.json +++ b/postman/TransferService-v3.json @@ -123,7 +123,7 @@ { "key": "id", "value": "", - "description": "Unique identifier of the transaction." + "description": "The unique identifier of the transaction." } ], "query": [ @@ -374,6 +374,60 @@ } } ] + }, + { + "name": "/transfers/:transferId/returns", + "description": "Returns previously transferred funds without creating a new `transferId`.", + "item": [ + { + "name": "Return a transfer", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json", + "disabled": false + }, + { + "key": "Accept", + "value": "application/json", + "disabled": false + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"amount\": \"\",\n \"reference\": \"\"\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{baseUrl}}/transfers/:transferId/returns", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "transfers", + ":transferId", + "returns" + ], + "variable": [ + { + "key": "transferId", + "value": "", + "description": "The unique identifier of the transfer to be returned." + } + ], + "query": [ + ] + }, + "description": "Returns previously transferred funds without creating a new `transferId`." + } + } + ] } ] },