The Currency object
A Rutter Currency represents a supported currency in the underlying accounting system.
Properties
id
stringThe Rutter generated unique ID of the object.
currency_code
enumThe ISO 4217 currency code of the currency.
currency_name
stringnullableThe currency name.
updated_at
stringThe ISO 8601 timestamp that the object was last updated.
{
"id": "00000000-0000-0000-0000-000000000000",
"currency_code": "USD",
"currency_name": "USD",
"updated_at": "2023-01-02T02:34:56.000Z"
}
List Currencies
GET /accounting/currenciesRequest Parameters
access_token
stringqueryThe access token of the connection.
cursor
stringoptionalqueryThe cursor to use for pagination. This value is passed in from next_cursor
field in a previous request.
expand
enumoptionalqueryUsed to request inclusion of optional objects.
force_fetch
enumoptionalqueryForce a response even if the underlying connection hasn't finished the initial sync.
limit
integeroptionalqueryThe limit on the number of entities returned.
updated_at_max
integeroptionalqueryUnix Timestamp in milliseconds representing the maximum updated_at datetime to fetch entities from.
updated_at_min
integeroptionalqueryUnix Timestamp in milliseconds representing the minimum updated_at datetime to fetch entities from.
Response Body
connection
objectconnection
attributescurrencies
arraycurrencies
attributesnext_cursor
stringnullableoptional{
"connection": {
"id": "00000000-0000-0000-0000-000000000000",
"orgId": "00000000-0000-0000-0000-000000000000",
"platform": "NETSUITE"
},
"currencies": [
{
"id": "00000000-0000-0000-0000-000000000000",
"currency_code": "USD",
"currency_name": "USD",
"updated_at": "2023-01-02T02:34:56.000Z"
}
],
"next_cursor": "MTY3NDgzMTk0Ml82MDY4ZDI0ZC02NGRmLTRmN2EtYTM0Ny0zN2ZmNjY5MGVmMjU="
}