post https://sandbox.external.routefusion.com/graphql (31 disregard)
The transfers query fetches all transfers for an organization with pagination control through the listFilter object. You can include some search terms (id, entity_id,organization_id,..etc) using search_terms string.
Parameters
| Parameter | Type | Required | 
|---|---|---|
| search_terms | String | false | 
| listFilter | Object | false | 
GraphQL
query transfersPage (
    $search_terms: String
    $pagination: PaginationInput
) {
    transfersPage (
        search_terms: $search_terms
        pagination: $pagination
    ) {
                    items {
                  id
                  state
                  source_amount
                  source_currency
                  destination_amount
                  destination_currency
                  rate
                  fee
                  created_date
                  expected_delivery_date
                  beneficiary {
                    id
                    type
                    business_name
                    first_name
                    last_name
                  }
                  wallet {
                    id
                  }
                  creator {
                    id
                    email
                  }
                  entity {
                    id
                    type
                    business_name
                    first_name
                    last_name
                  }
                  funding_instructions {
                    type
                    message
                    amount
                    currency
                    bank_name
                    bank_address1
                    bank_address2
                    bank_city
                    bank_state_province_region
                    bank_postal_code
                    bank_country
                    account_number
                    routing_code
                    swift_bic
                    account_holder_name
                    account_holder_address1
                    account_holder_address2
                    account_holder_city
                    account_holder_state_province_region
                    account_holder_postal_code
                    account_holder_country
                    reference
                  }
                }
                pagination {
                  page
                  page_size
                  pages_total
                  items_total
                }
            }
}Variables
{
    "search_terms": "",
    "pagination": {
        "page": 11,
        "page_size": 10
    }
}Filter keys available:
- user_id
- created_date
- expected_delivery_date
- state
- source_amount
- source_currency
- fee
- rate
- destination_amount
- destination_currency
- wallet_id
- beneficiary_name
- entity_name