Customers

The AccountingCustomer Object

A Rutter Customer is an individual or company that buys goods or services from a business. Customers relate to a corresponding invoice for a business. You can retrieve a list of all the customers of a company.

For customers from a commerce platform, see Customers.

Properties

idstring

The Rutter generated unique ID of the customer.

platform_idstring

The platform specific ID of the customer.

parent_idstringnullable

The Rutter ID of the Parent Customer linked to the customer. Supported for QuickBooks and QuickBooks Desktop.

subsidiary_idstringnullable

The Rutter ID of the Subsidiary linked to the customer. Supported for NetSuite.

statusenum

The status of the customer.

One ofactivearchived, or unknown.
contact_namestringnullable

The name of the primary contact of the customer.

currency_codestringnullable

The ISO 4217 currency code of the customer.

customer_namestringfilterablenullable

The business name of the customer.

emailstringfilterablenullable

The email of the customer.

phonestringfilterablenullable

The phone number of the customer.

registration_numberstringnullable

The registration number of the customer.

tax_numberstringnullable

The tax number of the customer.

addressesarray

An array of addresses linked to the customer.

Show addresses attributes
created_atstringfilterablenullable

The ISO 8601 timestamp that the customer was created.

updated_atstringfilterablenullable

The ISO 8601 timestamp that the customer was last updated.

last_synced_atstringfilterable

The ISO 8601 timestamp when the customer was last synced by Rutter.

platform_urlstringnullable

A URL pointing to the object in the underlying platform. When no URL exists for the specific object, the value may be a larger URL containing the object.

platform_dataobjectOptional

The raw platform data corresponding to the Rutter object.

Endpoints
GET
/accounting/customers
GET
/accounting/customers/:id
POST
/accounting/customers
PATCH
/accounting/customers/:id

List Customers

GEThttps://production.rutterapi.com/versioned/accounting/customers

Request Parameters

    access_tokenstringqueryRequired

    The access token of the connection.

    cursorstringqueryOptional

    Used to paginate to the next batch of objects. Should be a copy of the next_cursor value from the previous response.

    limitintegerqueryOptional

    Used to limit the number of returned objects. Defaults to 50.

    filterstringqueryOptional

    Not yet supported on Sage Intacct or Dynamics 365 Business Central. 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: customer_name, email, phone, updated_at, created_at, last_synced_at.

    sortstringqueryOptional

    Used 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 Dynamics 365 Business Central. For those platforms, only updated_at and last_synced_at fields are supported.

    Sortable fields: customer_name, email, phone, updated_at, created_at, last_synced_at.

    expandenumqueryOptional

    Include platform specific data (includes additional fields not provided by the Rutter object).

    Must beplatform_data.
    customer_namestringfilterablequeryOptional

    Deprecated - use filter instead. The exact customer name to filter on. Not yet supported on Sage Intacct or Dynamics 365 Business Central.

    last_synced_at_minintegerqueryOptional

    Deprecated - 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_maxintegerqueryOptional

    Deprecated - 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_minintegerqueryOptional

    Deprecated - 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_fetchenumqueryOptional

    Used to force a response even if the underlying connection has not finished its initial sync.

    One oftrue or false.

Response Body

Support by integration
  • QuickBooks
    QuickBooks
  • Xero
    Xero
  • QuickBooks Desktop
    QuickBooks Desktop
  • NetSuite
    NetSuite
200
Example Response Body
JSON
1
{
2
"customers": [
3
{
4
"id": "00000000-0000-0000-0000-000000000000",
5
"platform_id": "12345678",
6
"parent_id": "00000000-0000-0000-0000-000000000000",
7
"subsidiary_id": "00000000-0000-0000-0000-000000000000",
8
"status": "active",
9
"contact_name": "Eric Yu",
10
"currency_code": "USD",
11
"customer_name": "Rutter API",
12
"email": "eric@rutter.com",
13
"phone": "1234567890",
14
"registration_number": "123456789",
15
"tax_number": "12-3456789",
16
"addresses": [
17
{
18
"type": "billing",
19
"address1": "123 Rutter Road",
20
"address2": "Floor 4",
21
"city": "San Francisco",
22
"country": "US",
23
"postal_code": "94110",
24
"region": "CA"
25
}
26
],
27
"created_at": "2023-01-02T02:34:56.000Z",
28
"updated_at": "2023-01-02T02:34:56.000Z",
29
"last_synced_at": "2023-01-02T02:34:56.000Z",
30
"platform_url": "https://platform.com/resource?id=123",
31
"platform_data": {
32
"id": 123,
33
"data": "Varies by platform"
34
}
35
}
36
],
37
"next_cursor": "MTY3NDgzMTk0Ml82MDY4ZDI0ZC02NGRmLTRmN2EtYTM0Ny0zN2ZmNjY5MGVmMjU=",
38
"connection": {
39
"id": "00000000-0000-0000-0000-000000000000",
40
"orgId": "00000000-0000-0000-0000-000000000000",
41
"platform": "NETSUITE"
42
}
43
}

Fetch a Customer

GEThttps://production.rutterapi.com/versioned/accounting/customers/:id

Request Parameters

    idstringpathRequired

    The unique ID of the object.

    access_tokenstringqueryRequired

    The access token of the connection.

    id_typeenumqueryOptional

    Used to indicate the type of id that is supplied. Defaults to rutter. Not yet supported on Sage Intacct or Dynamics 365 Business Central.

    One ofrutter or platform.
    force_fetchenumqueryOptional

    Used to force a response even if the underlying connection has not finished its initial sync.

    One oftrue or false.

Response Body

Support by integration
  • QuickBooks
    QuickBooks
  • Xero
    Xero
  • QuickBooks Desktop
    QuickBooks Desktop
  • NetSuite
    NetSuite
200
Example Response Body
JSON
1
{
2
"customer": {
3
"id": "00000000-0000-0000-0000-000000000000",
4
"platform_id": "12345678",
5
"parent_id": "00000000-0000-0000-0000-000000000000",
6
"subsidiary_id": "00000000-0000-0000-0000-000000000000",
7
"status": "active",
8
"contact_name": "Eric Yu",
9
"currency_code": "USD",
10
"customer_name": "Rutter API",
11
"email": "eric@rutter.com",
12
"phone": "1234567890",
13
"registration_number": "123456789",
14
"tax_number": "12-3456789",
15
"addresses": [
16
{
17
"type": "billing",
18
"address1": "123 Rutter Road",
19
"address2": "Floor 4",
20
"city": "San Francisco",
21
"country": "US",
22
"postal_code": "94110",
23
"region": "CA"
24
}
25
],
26
"created_at": "2023-01-02T02:34:56.000Z",
27
"updated_at": "2023-01-02T02:34:56.000Z",
28
"last_synced_at": "2023-01-02T02:34:56.000Z",
29
"platform_url": "https://platform.com/resource?id=123",
30
"platform_data": {
31
"id": 123,
32
"data": "Varies by platform"
33
}
34
},
35
"connection": {
36
"id": "00000000-0000-0000-0000-000000000000",
37
"orgId": "00000000-0000-0000-0000-000000000000",
38
"platform": "NETSUITE"
39
}
40
}

Create a Customer

POSThttps://production.rutterapi.com/versioned/accounting/customers

Request Parameters

    access_tokenstringqueryRequired

    The access token of the connection.

Request Body

    response_modeenumOptional

    The response mode for our async endpoints. prefer_sync allows calling the API in a best-effort, synchronous fashion and wait for the response. If this takes too long we will instead return the asynchronous response. This is the default behavior. async makes the API respond with the asynchronous response. See Asynchronous Operations.

    One ofasync or prefer_sync.
    customerobject
    Show customer attributes

Response Body

Support by integration
  • QuickBooks
    QuickBooks
  • Xero
    Xero
  • QuickBooks Desktop
    QuickBooks Desktop
  • NetSuite
    NetSuite
Example Request Body
JSON
1
{
2
"customer": {
3
"contact_name": "Eric Yu",
4
"customer_name": "Rutter",
5
"email": "eric@rutter.com",
6
"phone": "1234567890",
7
"addresses": [
8
{
9
"type": "billing",
10
"address1": "123 Rutter Road",
11
"address2": "Floor 4",
12
"city": "San Francisco",
13
"country": "US",
14
"postal_code": "94110",
15
"region": "CA"
16
}
17
]
18
}
19
}
200
Example Response Body
JSON
1
{
2
"customer": {
3
"id": "00000000-0000-0000-0000-000000000000",
4
"platform_id": "12345678",
5
"parent_id": "00000000-0000-0000-0000-000000000000",
6
"subsidiary_id": "00000000-0000-0000-0000-000000000000",
7
"status": "active",
8
"contact_name": "Eric Yu",
9
"currency_code": "USD",
10
"customer_name": "Rutter API",
11
"email": "eric@rutter.com",
12
"phone": "1234567890",
13
"registration_number": "123456789",
14
"tax_number": "12-3456789",
15
"addresses": [
16
{
17
"type": "billing",
18
"address1": "123 Rutter Road",
19
"address2": "Floor 4",
20
"city": "San Francisco",
21
"country": "US",
22
"postal_code": "94110",
23
"region": "CA"
24
}
25
],
26
"created_at": "2023-01-02T02:34:56.000Z",
27
"updated_at": "2023-01-02T02:34:56.000Z",
28
"last_synced_at": "2023-01-02T02:34:56.000Z",
29
"platform_url": "https://platform.com/resource?id=123",
30
"platform_data": {
31
"id": 123,
32
"data": "Varies by platform"
33
}
34
}
35
}

Update a Customer

PATCHhttps://production.rutterapi.com/versioned/accounting/customers/:id

Request Parameters

    idstringpathRequired

    The Rutter generated unique ID of the object.

    access_tokenstringqueryRequired

    The access token of the connection.

Request Body

    response_modeenumOptional

    The response mode for our async endpoints. prefer_sync allows calling the API in a best-effort, synchronous fashion and wait for the response. If this takes too long we will instead return the asynchronous response. This is the default behavior. async makes the API respond with the asynchronous response. See Asynchronous Operations.

    One ofasync or prefer_sync.
    customerobject
    Show customer attributes

Response Body

Support by integration
  • QuickBooks
    QuickBooks
  • QuickBooks Desktop
    QuickBooks Desktop
200
Example Response Body
JSON
1
{
2
"customer": {
3
"id": "00000000-0000-0000-0000-000000000000",
4
"platform_id": "12345678",
5
"parent_id": "00000000-0000-0000-0000-000000000000",
6
"subsidiary_id": "00000000-0000-0000-0000-000000000000",
7
"status": "active",
8
"contact_name": "Eric Yu",
9
"currency_code": "USD",
10
"customer_name": "Rutter API",
11
"email": "eric@rutter.com",
12
"phone": "1234567890",
13
"registration_number": "123456789",
14
"tax_number": "12-3456789",
15
"addresses": [
16
{
17
"type": "billing",
18
"address1": "123 Rutter Road",
19
"address2": "Floor 4",
20
"city": "San Francisco",
21
"country": "US",
22
"postal_code": "94110",
23
"region": "CA"
24
}
25
],
26
"created_at": "2023-01-02T02:34:56.000Z",
27
"updated_at": "2023-01-02T02:34:56.000Z",
28
"last_synced_at": "2023-01-02T02:34:56.000Z",
29
"platform_url": "https://platform.com/resource?id=123",
30
"platform_data": {
31
"id": 123,
32
"data": "Varies by platform"
33
}
34
}
35
}

Have questions?

Contact support for personalized guidance.

Contact support