- Get an incoming wire transfer
Returns a specific incoming wire transfer.
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/incoming_wire_transfers/{id}
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/incoming_wire_transfers/{id}
curl -i -X GET \
'https://sandbox.weavr.io/multi/incoming_wire_transfers/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'api-key: YOUR_API_KEY_HERE'Success
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.
The state of an incoming wire transfer:
- PENDING: The transfer has been received and is being processed. Funds have not yet been credited to the destination account.
- COMPLETED: Funds have been credited to the destination account.
- REJECTED: The transfer was not accepted; funds were not credited.
The amount credited (or to be credited) to the destination instrument, in the instrument's currency.
The fee charged on this incoming wire transfer. Omitted when no fee was charged.
The managed account (with IBAN) that received the funds.
The payment network over which the transfer was received.
Foreign exchange details when the transaction involved currency conversion.
When the IWT was received, expressed in Epoch timestamp using millisecond precision.
{ "id": "string", "profileId": "string", "state": "PENDING", "amount": { "currency": "str", "amount": 0 }, "fee": { "currency": "str", "amount": 0 }, "destinationInstrument": { "id": "string", "type": "managed_cards" }, "paymentNetwork": "SEPA", "senderName": "string", "senderIban": "string", "senderReference": "string", "forex": { "originalAmount": { … }, "exchangeRate": { … }, "paddingAmount": { … }, "feeAmount": { … } }, "isInstant": true, "createdAt": 0, "executedAt": 0 }