# Get all transfer transactions Retrieves all the transfer transactions performed by the logged-in identity. Endpoint: GET /transfers Version: 3.63.5 Security: auth_token, api-key ## Query parameters: - `offset` (integer) The offset value for paging, indicating the initial item number to be returned from the data set satisfying the given criteria. Leave out to fetch the first page of results. - `limit` (integer) The limit of the results for paging, starting at the offset. Limit is always capped at 100. - `profileId` (string) Filter by the transfer profile. Leave out to fetch all transfer transactions. - `instrumentId` (object) Filter by the source instrument id. - `state` (array) Filter by the transfer transaction state. Leave out to fetch all states. Enum: "INITIALISED", "COMPLETED", "REJECTED", "FAILED", "PENDING", "SCHEDULED", "CANCELLED" - `createdFrom` (integer) Filter for transfer transactions created after createdFrom timestamp. Timestamp is expressed in Epoch timestamp using millisecond precision. Leave out to fetch all transfers. - `createdTo` (integer) Filter for transfer transactions created before createdTo timestamp. Timestamp is expressed in Epoch timestamp using millisecond precision. Leave out to fetch all transfers. - `executedFrom` (integer) Filter for transfer transactions executed after executedFrom timestamp. Timestamp is expressed in Epoch timestamp using millisecond precision. Leave out to fetch all transfers. - `executedTo` (integer) Filter for transfer transactions executed before executedTo timestamp. Timestamp is expressed in Epoch timestamp using millisecond precision. Leave out to fetch all transfers. - `tag` (string) Filter by the transfer tag. The exact tag must be provided, as wildcards are not supported. Leave out to fetch all entries. ## Response 200 fields (application/json): - `transfer` (array) - `transfer.id` (string, required) The unique identifier of a Transfer transaction. - `transfer.profileId` (string, required) The profile Id which a specific identity, instrument or transaction type is linked to. Profiles contain configuration and determine behavioral aspects of the newly created transaction, for example, fees that may apply. You can have one or more profiles linked to your application, and these can be used to drive different behaviors according to your product's needs. Profile Ids can be found in the Multi Portal, in the API Credentials page. - `transfer.tag` (string) The tag field is a custom field that can be used to search and filter. - `transfer.source` (object, required) The source managed account or card from where the funds were transferred. - `transfer.source.id` (string, required) - `transfer.source.type` (string, required) Enum: "managed_cards", "managed_accounts" - `transfer.destination` (object, required) The destination managed account or card to where the funds were transferred. - `transfer.destinationAmount` (object, required) The amount, in same currency as source and destination, that was transferred from the source to the destination instrument. - `transfer.destinationAmount.currency` (string, required) The currency expressed in ISO-4217 code. Example: GBP, EUR, USD. - `transfer.destinationAmount.amount` (integer, required) The monetary amount, scaled to the lowest denomination of the currency. Example, an amount of 1000 for a EUR currency is actually 1000 Euro cents or EUR 10.00. - `transfer.description` (string) The description details that are included in the transaction as reference. - `transfer.state` (string, required) Status of the transaction. Enum: "INITIALISED", "COMPLETED", "REJECTED", "FAILED", "PENDING", "SCHEDULED", "CANCELLED" - `transfer.creationTimestamp` (integer, required) The time when the transaction was created, expressed in Epoch timestamp using millisecond precision. - `transfer.scheduledTimestamp` (string) The epoch timestamp at which the transaction is scheduled to be executed. - `transfer.executionTimestamp` (string) The epoch timestamp at which the transaction was executed, transitioning to a final state such as COMPLETED, REJECTED, or FAILED. - `transfer.cancellationReason` (string) The reason the scheduled transaction was cancelled. - `count` (integer) Total number of records (excluding the paging limit). - `responseCount` (integer) Total number of records returned in this response. ## Response 400 fields (application/json): - `message` (string) When present helps to identify and fix the problem. - `syntaxErrors` (object) Is returned as part of an HTTP error response whenever a syntax error is detected. A list of the fields together with their syntax error will be provided. - `syntaxErrors.invalidFields` (array) - `syntaxErrors.invalidFields.params` (array) - `syntaxErrors.invalidFields.fieldName` (string) - `syntaxErrors.invalidFields.error` (string) Enum: "REQUIRED", "HAS_TEXT", "REQUIRES", "SIZE", "RANGE", "IN", "NOT_IN", "REGEX", "EXACTLY", "AT_LEAST", "AT_MOST", "ALL_OR_NONE" ## Response 403 fields (application/json): - `errorCode` (string) Enum: "STEP_UP_REQUIRED", "ACCESS_TOKEN_REQUIRED" ## Response default fields (application/json): - `code` (string) - `message` (string) ## Response 401 fields ## Response 429 fields ## Response 500 fields ## Response 503 fields