Skip to main content
POST
/
payments
/
{payment_id}
/
transactions
/
{transaction_id}
/
split-marketplace
/
transfer-reversal
cURL
curl --request POST \
  --url https://api-sandbox.y.uno/v1/payments/{payment_id}/transactions/{transaction_id}/split-marketplace/transfer-reversal \
  --header 'Content-Type: application/json' \
  --header 'private-secret-key: <api-key>' \
  --header 'public-api-key: <api-key>' \
  --data '
{
  "amount": {
    "currency": "",
    "value": ""
  },
  "description": ""
}
'
Enables marketplaces using Yuno Split Payments to request a transfer based on an existing payment. Request a transfer for a specified amount to one of the recipients participating in the split.

Authorizations

public-api-key
string
header
default:<Your public-api-key>
required
private-secret-key
string
header
default:<Your private-secret-key>
required

Headers

X-Idempotency-Key
string

Unique identifier used in HTTP headers to ensure that a request is processed only once, even if it is retried due to network issues or timeouts.

Path Parameters

payment_id
string
required

The unique identifier of the payment (MAX 64; MIN 36).

transaction_id
string
required

The unique identifier of the transaction (MAX 64; MIN 36).

Body

application/json
amount
object
required

The payment amount (multiple of 0.0001).

description
string
default:""

The unique identifier of the transaction (MAX 256; MIN 3).

Response

200 - undefined