GET
/
wires
List outgoing wires
curl --request GET \
  --url https://api-sandbox.synctera.com/v0/wires \
  --header 'Authorization: Bearer <token>'
{
  "wires": [
    {
      "amount": 10000,
      "bank_message": "<string>",
      "batch_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "case_id": 53,
      "creation_time": "2010-05-06T12:23:34.321Z",
      "currency": "USD",
      "customer_id": "b01db9c7-78f2-4a99-8aca-1231d32f9b96",
      "effective_date": "2022-03-18",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "input_message_accountability_data": "10220318BANK0001123456",
      "is_bulk": true,
      "last_updated_time": "2010-05-06T12:23:34.321Z",
      "network": "fedwire",
      "originating_account_id": "b01db9c7-78f2-4a99-8aca-1231d32f9b96",
      "originating_account_number": 1961234745,
      "receiving_account_id": "b01db9c7-78f2-4a99-8aca-1231d32f9b96",
      "receiving_account_number": 1961234745,
      "recipient_message": "<string>",
      "return_data": {
        "original_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "original_transaction_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "previous_message_id": "<string>",
        "reason": "<string>"
      },
      "sender_reference_id": "9F564A6124E65",
      "settlement_date": "2022-03-18",
      "status": "PENDING",
      "status_details": "PENDING_DUAL_APPROVAL",
      "transaction_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "transaction_in_id": "b01db9c7-78f2-4a99-8aca-1231d32f9b96"
    }
  ],
  "next_page_token": "a8937a0d"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

status
enum<string>

Optional query parameter that can be use to filter the list of returned wires by transfer status

Available options:
BLOCKED,
POSTED,
READY
Example:

"READY"

originating_account_id
string<uuid>

The unique identifier of the originating account.

Example:

"b01db9c7-78f2-4a99-8aca-1231d32f9b96"

to_date
string<date>

Only display transactions with an effective date less than or equal to to_date

from_date
string<date>

Only display transactions with an effective date greater than from_date

customer_id
string<uuid>

The unique identifier of a customer.

Example:

"b01db9c7-78f2-4a99-8aca-1231d32f9b96"

receiving_account_id
string<uuid>

The unique identifier of the receiving account.

Example:

"b01db9c7-78f2-4a99-8aca-1231d32f9b96"

page_token
string

Optional pagination token to be provided to retrieve subsequent pages, returned from previous get

Example:

"a8937a0d"

id
string<uuid>[]

Unique resource identifier

limit
integer
default:100

Maximum number of objects to return per page. If the limit is greater than 100, then it will be set to 100.

Required range: x >= 1
Example:

100

Response

200
application/json

List of wires

The response is of type object.