GET
/
fees
List fees
curl --request GET \
  --url https://api.synctera.com/v1/fees \
  --header 'Authorization: Bearer <token>'
{
  "next_page_token": "a8937a0d",
  "fees": [
    {
      "account_id": "12943c51-e4ff-4e57-9558-08cab6b96364",
      "amount": 1000,
      "metadata": {},
      "note": "Reduced account fee based on phone call with customer",
      "template_id": "64943c51-e4ff-4e57-9558-08cab6b96352",
      "creation_time": "2010-05-06T12:23:34.321Z",
      "currency": "USD",
      "description": "Premium Customer ATM Fee",
      "id": "44943c51-e4ff-4e57-9558-08cab6b96321",
      "internal_account_id": "42943c51-e4ff-4e57-9558-08cab6b963c8",
      "last_updated_time": "2010-05-06T12:23:34.321Z",
      "subtype": "ACH_INCOMING_TRANSFER",
      "tenant": "abcdef_ghijkl",
      "transaction_id": "11943c51-e4ff-4e57-9558-08cab6b96333"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

end_time
string<date-time>

Return fees created before this time.

account_id
string<uuid>[]

Return fees for the specified account.

Example:

"64438afd-fa20-4010-a573-2bbdca77cdb6,84ef251c-ab8f-47a5-bbfd-a16648f95157"

subtype
enum<string>

A short string representing the sub-type of the fee. This will be used as the subtype of the resulting transaction.

Available options:
ACH_INCOMING_TRANSFER,
ACH_INCOMING_TRANSFER_REVERSAL,
ACH_OUTGOING_TRANSFER,
ACH_OUTGOING_TRANSFER_REVERSAL,
APPLICATION,
APPLICATION_REVERSAL,
ATM_BALANCE_INQUIRY,
ATM_BALANCE_INQUIRY_REVERSAL,
ATM_WITHDRAWAL,
ATM_WITHDRAWAL_REVERSAL,
BALANCE_TRANSFER,
BALANCE_TRANSFER_REVERSAL,
BILL_PAY,
BILL_PAY_REVERSAL,
CARD_DELIVERY,
CARD_DELIVERY_REVERSAL,
CARD_REPLACEMENT,
CARD_REPLACEMENT_REVERSAL,
CASH_ADVANCE,
CASH_ADVANCE_REVERSAL,
CASH_DEPOSIT,
CASH_DEPOSIT_REVERSAL,
CROSS_BORDER_TRANSACTION,
CROSS_BORDER_TRANSACTION_REVERSAL,
EFT_TRANSFER,
EFT_TRANSFER_REVERSAL,
FOREIGN_ATM,
FOREIGN_ATM_REVERSAL,
FOREIGN_TRANSACTION,
FOREIGN_TRANSACTION_REVERSAL,
INACTIVITY,
INACTIVITY_REVERSAL,
LATE_PAYMENT,
LATE_PAYMENT_REVERSAL,
MAINTENANCE,
MAINTENANCE_REVERSAL,
MISCELLANEOUS,
MISCELLANEOUS_REVERSAL,
ORIGINATION,
ORIGINATION_REVERSAL,
OVERDRAFT,
OVERDRAFT_REVERSAL,
OVER_THE_LIMIT,
OVER_THE_LIMIT_REVERSAL,
RETURNED_ITEM,
RETURNED_ITEM_REVERSAL,
RETURNED_PAYMENT,
RETURNED_PAYMENT_REVERSAL,
STOP_PAYMENT,
STOP_PAYMENT_REVERSAL,
SUBSCRIPTION,
SUBSCRIPTION_REVERSAL,
WIRE_TRANSFER,
WIRE_TRANSFER_REVERSAL
id
string<uuid>[]

Return the fee with the specified id. Multiple IDs can be provided as a comma-separated list.

Example:

"64438afd-fa20-4010-a573-2bbdca77cdb6,84ef251c-ab8f-47a5-bbfd-a16648f95157"

page_token
string

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

Example:

"a8937a0d"

start_time
string<date-time>

Return fees created at or after this time.

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

description
string

Return fees with the specified description. A * character can be used as a wildcard to match any characters.

fee_template_id
string<uuid>[]

Return fees resources with a fee template of the specified id. Multiple IDs can be provided as a comma-separated list.

Example:

"64438afd-fa20-4010-a573-2bbdca77cdb6,84ef251c-ab8f-47a5-bbfd-a16648f95157"

Response

200
application/json

List of fees

The response is of type object.