Locations
The Location Object
A Rutter Location represents a categorization for bills and expenses that logs the origin or geographical domain of the purchase.
Properties
idstringThe Rutter generated unique ID of the location.
platform_idstringThe platform specific ID of the location.
parent_idstringnullableThe Rutter ID of the Parent Location linked to the location.
has_childrenbooleannullableDescribes whether the location has child locations.
namestringnullableThe name of the location.
statusenumfilterableOptionalThe status of the location.
subsidiariesarrayAn array of Subsidiary linked to the location. Supported for NetSuite and Sage Intacct.
subsidiaries attributescreated_atstringfilterablenullableThe ISO 8601 timestamp that the location was created.
updated_atstringfilterablenullableThe ISO 8601 timestamp that the location was last updated.
last_synced_atstringfilterableThe ISO 8601 timestamp when the department was last synced by Rutter.
platform_dataobjectOptionalThe raw platform data corresponding to the Rutter object.
List Locations
Request Parameters
access_tokenstringqueryRequiredThe access token of the connection.
cursorstringqueryOptionalUsed to paginate to the next batch of objects. Should be a copy of the next_cursor value from the previous response.
limitintegerqueryOptionalUsed to limit the number of returned objects. Defaults to 50.
filterstringqueryOptionalNot currently supported on Sage Intacct or Sage Business Cloud. Used to specify a filtering criteria for response objects. Refer to Filtering Objects to understand the syntax for the filtering criteria. The filtering syntax only supports fields decorated with a filterable tag in the response object.
Filterable fields: status, created_at, updated_at, last_synced_at.
sortstringqueryOptionalUsed to sort the response objects, e.g. last_synced_at ASC. If a value is provided but ASC or DESC is not, defaults to ASC. If omitted, defaults to updated_at DESC. Supports only fields decorated with a filterable tag in the response object except on Sage Intacct and Sage Business Cloud. For those platforms, only updated_at_min, updated_at_max and last_synced_at_min fields are supported and not deprecated.
Sortable fields: status, created_at, updated_at, last_synced_at.
expandenumqueryOptionalInclude platform specific data (includes additional fields not provided by the Rutter object).
last_synced_at_minintegerqueryOptionalDeprecated - use filter instead. Used to filter objects with a last_synced_at value greater than or equal to the supplied value. Should be a Unix time in milliseconds.
updated_at_maxintegerqueryOptionalDeprecated - use filter instead. Used to filter objects with a updated_at value less than or equal to the supplied value. Should be a Unix time in milliseconds.
updated_at_minintegerqueryOptionalDeprecated - use filter instead. Used to filter objects with a updated_at value greater than or equal to the supplied value. Should be a Unix time in milliseconds.
force_fetchenumqueryOptionalUsed to force a response even if the underlying connection has not finished its initial sync.
Response Body
1{
2 "locations": [
3 {
4 "id": "00000000-0000-0000-0000-000000000000",
5 "platform_id": "12345678",
6 "parent_id": "00000000-0000-0000-0000-000000000000",
7 "has_children": false,
8 "name": "SF Region",
9 "status": "active",
10 "subsidiaries": [
11 {
12 "id": "00000000-0000-0000-0000-000000000000"
13 }
14 ],
15 "created_at": "2023-01-02T02:34:56.000Z",
16 "updated_at": "2023-01-02T02:34:56.000Z",
17 "last_synced_at": "2023-01-02T02:34:56.000Z",
18 "platform_data": {
19 "id": 123,
20 "data": "Varies by platform"
21 }
22 }
23 ],
24 "next_cursor": "MTY3NDgzMTk0Ml82MDY4ZDI0ZC02NGRmLTRmN2EtYTM0Ny0zN2ZmNjY5MGVmMjU=",
25 "connection": {
26 "id": "00000000-0000-0000-0000-000000000000",
27 "orgId": "00000000-0000-0000-0000-000000000000",
28 "platform": "NETSUITE"
29 }
30}
Fetch a Location
Request Parameters
idstringpathRequiredThe unique ID of the object.
access_tokenstringqueryRequiredThe access token of the connection.
id_typeenumqueryOptionalUsed to indicate the type of id that is supplied. Defaults to rutter. Not currently supported on Sage Intacct or Sage Business Cloud.
force_fetchenumqueryOptionalUsed to force a response even if the underlying connection has not finished its initial sync.
Response Body
1{
2 "location": {
3 "id": "00000000-0000-0000-0000-000000000000",
4 "platform_id": "12345678",
5 "parent_id": "00000000-0000-0000-0000-000000000000",
6 "has_children": false,
7 "name": "SF Region",
8 "status": "active",
9 "subsidiaries": [
10 {
11 "id": "00000000-0000-0000-0000-000000000000"
12 }
13 ],
14 "created_at": "2023-01-02T02:34:56.000Z",
15 "updated_at": "2023-01-02T02:34:56.000Z",
16 "last_synced_at": "2023-01-02T02:34:56.000Z",
17 "platform_data": {
18 "id": 123,
19 "data": "Varies by platform"
20 }
21 },
22 "connection": {
23 "id": "00000000-0000-0000-0000-000000000000",
24 "orgId": "00000000-0000-0000-0000-000000000000",
25 "platform": "NETSUITE"
26 }
27}
Have questions?
Contact support for personalized guidance.