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

Get PIX Payin by external ID

GET
/v1/pix/payin/external_id/{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

Query 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/payin/external_id/?gen_base_64' \
--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",
        "method": "string",
        "amount": 1,
        "tax_id": "string",
        "pix_qr_code_base64": "string",
        "pix_dynamic_code": "string",
        "e2e": "string",
        "error": {},
        "payer": {
            "tax_id": "string",
            "bank_ispb": 0,
            "bank_name": "string",
            "account_branch": "string",
            "account_number": "string"
        },
        "bank": "string"
    }
}
Previous
Get PIX Payin by ID
Next
Create PIX Payout