Skip to main content
POST
/
payments
/
paypal
Paypal Payout
curl --request POST \
  --url https://sandbox.sturdytechnologies.com/v3/payments/paypal \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_id": "<string>",
  "amount": 123,
  "paypal_id": "<string>",
  "recipient_name": "<string>",
  "description": "<string>"
}
'
{
  "data": {
    "amount": 123,
    "description": "<string>",
    "paypal_id": "<string>",
    "recipient_name": "<string>",
    "transaction_date": "2023-10-01T12:34:56Z",
    "transaction_id": "txn_12345",
    "transaction_status": "processing"
  },
  "message": "<string>",
  "success": true
}

Body

application/json

Paypal Payout payload

account_id
string
required

Unique Identifier of the US account from which funds will be transferred from (Pass merchant's US account ID if hold_balance is false for Create US Bank Account).

amount
number
required
paypal_id
string
required

Paypal ID (email) of the recipient.

recipient_name
string
required
description
string

Response

Created

data
object
message
string
success
boolean