Skip to main content

List Internal Transactions

GET 

/internal_transactions

List internal transactions performed on the authorized object (Entity or Platform).

The meta will always have total_count set to null since this API is an infinite scroll API.

Request

Query Parameters

    page int32

    Default value: 1

    Page to list

    id uuid

    Internal Transaction ID to look for

    currency uuid

    Filter transactions by currency

    created_at[gt] timestamp

    Filter settlements created on a date equal or greater than a give date

    created_at[lt] timestamp

    Filter settlements created on a date equal or less than a give date

    updated_at[gt] timestamp

    Filter settlements updated on a date equal or greater than a give date

    updated_at[lt] timestamp

    Filter settlements updated on a date equal or less than a give date

    settled_at[gt] timestamp

    Filter settlements settled on a date equal or greater than a give date

    settled_at[lt] timestamp

    Filter settlements settled on a date equal or less than a give date

Responses

Successful operation

Schema

    internal_transactions

    object[]

  • Array [

  • id uuid
    recipient_type string

    Possible values: [Entity, Platform, Beneficiary]

    recipient_id uuid
    currency Currency (string)

    ISO-4217 three-letter currency code.

    amount integer

    Amount of the internal transaction movement.

    transfer_id uuid

    In case this internal transaction has been settled, this will contain the ID of the transaction.

    description string

    A string descriping the purpose of this internal transactions.

    created_at timestamp

    Date and time when the internal transaction was created.

    updated_at timestamp

    Date and time when the internal transaction status was updated.

    settled_at timestamp

    Date and time when the internal transaction was settled.

    metadata

    object

    A set of key-value pairs where both key and value are strings. Metadata allows you to add more information to the object that will be returned later on in responses and webhook messages.

    Metadata is searchable using the Payment List API.

    property name* string
  • ]

  • meta

    object

    current_page integer
    next_page integer
    prev_page integer
    total_pages integer
    total_count integer
Loading...