POST /transfer-refunds.json

POST /transfer-refunds.json
application/json

Body Required

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
POST /transfer-refunds.json
curl \
 -X POST http://api.example.com/v1/transfer-refunds.json \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"amount":0,"externalId":"string","name":"string","transferId":42}'
Request example
{
  "amount": 0,
  "externalId": "string",
  "name": "string",
  "transferId": 42
}
Response examples (200)
{
  "amount": 0,
  "createdAt": "2024-05-04T09:42:00+00:00",
  "externalId": "string",
  "id": 42,
  "name": "string",
  "transferId": 42,
  "updatedAt": "2024-05-04T09:42:00+00:00"
}