Skip to content

Incoming Wire Transfers

Incoming wire transfers received from external bank accounts to managed accounts with IBANs.

Get all incoming wire transfers

Request

Returns all incoming wire transfers for the authenticated identity.

Security
auth_token and api-key
Query
offsetinteger, (int32), >= 0

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.

limitinteger, (int32), [ 1 .. 100 ]

The limit of the results for paging, starting at the offset. Limit is always capped at 100.

stateArray of strings

Filter incoming wire transfers by state.

creationTimestampFrominteger, (int64)

Filter for transactions created after this timestamp. Epoch timestamp using millisecond precision.

creationTimestampTointeger, (int64)

Filter for transactions created before this timestamp. Epoch timestamp using millisecond precision.

lastUpdatedTimestampFrominteger, (int64)

Filter for transactions last updated after this timestamp. Useful for pulling recently changed transactions. Epoch timestamp using millisecond precision.

lastUpdatedTimestampTointeger, (int64)

Filter for transactions last updated before this timestamp. Epoch timestamp using millisecond precision.

sortOrderstring

Sort order for the results:

  • ASC: Ascending order, oldest first.
  • DESC: Descending order, most recent first.
Enum:"ASC""DESC"
curl -i -X GET \
  'https://sandbox.weavr.io/multi/incoming_wire_transfers?offset=0&limit=1&state=PENDING&creationTimestampFrom=0&creationTimestampTo=0&lastUpdatedTimestampFrom=0&lastUpdatedTimestampTo=0&sortOrder=ASC' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'api-key: YOUR_API_KEY_HERE'

Responses

Success

Headers
request-refstringrequired

A request identifier. Providing this reference when contacting our support team will help us investigate your query.

Bodyapplication/json
incomingWireTransfersArray of objects(IncomingWireTransfer)
countinteger, (int64)
responseCountinteger, (int64)
Response
{ "incomingWireTransfers": [ {} ], "count": 0, "responseCount": 0 }