Rivus Pay
  1. Payout
Rivus Pay
  • Authentication
    • Intro
    • Get Access Token
      POST
  • PIX Payments
    • Intro
    • Payin
      • Create PIX Payin
      • Get PIX Payin by ID
      • Get PIX Payin by external ID
    • Payout
      • Create PIX Payout
        POST
      • Get PIX Payout by ID
        GET
      • Get PIX Payout by external ID
        GET
  • Balance
    • Get balance
      GET
  • Webhooks
    • Intro
    • Webhook app portal link
      POST
  1. Payout

Create PIX Payout

POST
/v1/pix/payout

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
JWT Bearer
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
or
Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠400Bad Request
🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.rivuspay.digital/v1/pix/payout' \
--header 'x-api-key: <api-key>' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "tax_id": "string",
    "pix_type": "cpf",
    "pix_key": "11122233344",
    "amount": 10,
    "external_id": "q5yffgl1chpme4wotcxy6xdp",
    "meta": {
        "ip": "192.168.0.1",
        "name": "string",
        "email": "string",
        "phone": "string"
    }
}'
Response Response Example
200 - Example 1
{
    "data": {
        "id": "string",
        "created_at": "2019-08-24T14:15:22Z",
        "status": "pending",
        "tax_id": "11122233344",
        "pix_key": "11122233344",
        "pix_key_type": "cpf"
    }
}
Previous
Get PIX Payin by external ID
Next
Get PIX Payout by ID