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

Get PIX Payout by ID

GET
/v1/pix/payout/{id}

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
Path Params

Responses

🟢200Success
application/json
Body

🟠401Unauthorized
🟠400Bad request
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.rivuspay.digital/v1/pix/payout/' \
--header 'x-api-key: <api-key>' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "data": {
        "id": "string",
        "created_at": "2019-08-24T14:15:22Z",
        "updated_at": "2019-08-24T14:15:22Z",
        "status": "pending",
        "amount": 10,
        "tax_id": "11122233344",
        "description": "string",
        "pix_type": "cpf",
        "pix_key": "11122233344",
        "e2e": "string",
        "payer": {
            "tax_id": "string",
            "name": "string",
            "bank_ispb": "string",
            "account_type": "string",
            "account_branch": "string",
            "account_number": "string"
        },
        "receiver": {
            "tax_id": "string",
            "name": "string",
            "bank_ispb": "string",
            "account_type": "string",
            "account_branch": "string",
            "account_number": "string"
        }
    }
}
Previous
Create PIX Payout
Next
Get PIX Payout by external ID