Skip to main content
GET
/
v1
/
banking
/
internal-transfers
List internal transfers for authenticated company
curl --request GET \
  --url https://api-sandbox.rinne.com.br/core/v1/banking/internal-transfers \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "507f1f77bcf86cd799439011",
      "request_id": "req_123456789",
      "external_request_id": "123e4567-e89b-12d3-a456-426614174000",
      "company_id": "507f1f77bcf86cd799439011",
      "origin_bank_account_id": "507f1f77bcf86cd799439011",
      "destination_bank_account_id": "507f1f77bcf86cd799439012",
      "amount": 10000,
      "status": "PENDING",
      "provider_transfer_id": "provider_tx_123456",
      "error_message": "Insufficient funds",
      "created_at": "2023-01-01T00:00:00.000Z",
      "updated_at": "2023-01-01T00:00:00.000Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 100,
    "totalPages": 5,
    "hasNext": true,
    "hasPrev": false
  }
}

Authorizations

x-api-key
string
header
required

Company API key for authentication

Query Parameters

page
integer
default:1

Page number for pagination

Required range: x >= 1
limit
integer
default:20

Number of items per page

Required range: 1 <= x <= 100
status
enum<string>

Filter by internal transfer status

Available options:
PENDING,
PROCESSING,
COMPLETED,
FAILED
created_at_from
string<date-time>

Filter internal transfers from this date (inclusive)

created_at_to
string<date-time>

Filter internal transfers to this date (inclusive)

origin_bank_account_id
string<uuid>

Filter internal transfers from a specific origin bank account ID (for organization users)

destination_bank_account_id
string<uuid>

Filter internal transfers to a specific destination bank account ID (for organization users)

request_id
string

Filter by request ID

sort
enum<string>

Sort by field

Available options:
created_at,
amount,
status

Response

Internal transfers retrieved successfully

Paginated internal transfer list response

data
object[]
required

List of internal transfers

pagination
object
required

Pagination information