Rivus Pay
  1. Authentication
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
      • Get PIX Payout by ID
      • Get PIX Payout by external ID
  • Balance
    • Get balance
      GET
  • Webhooks
    • Intro
    • Webhook app portal link
      POST
  1. Authentication

Get Access Token

POST
/auth/access-token

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

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.rivuspay.digital/auth/access-token' \
--header 'x-api-key: <api-key>' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "string",
    "password": "string"
}'
Response Response Example
{
    "access_token": "string",
    "id_token": "string",
    "refresh_token": "string",
    "token_type": "string",
    "expires_in": 0,
    "scope": "string"
}
Previous
Intro
Next
PIX Payments