The Invoice Credit Memo object

A Rutter Invoice Credit Memo represents an invoice credit memo issued to a customer that can be applied against an invoice. Every invoice credit memo is linked to an Customer and zero or more Invoices.

Properties

idstring

The Rutter generated unique ID of the invoice credit memo.

platform_idstring

The platform specific ID of the invoice credit memo.

customer_idstringnullable

The Rutter ID of the Customer linked to the invoice credit memo.

document_numberstringnullable

The buyer facing document number of the invoice credit memo.

issue_datestringnullable

The ISO 8601 timestamp for when the invoice credit memo was issued.

allocated_atstringnullable

The ISO 8601 timestamp for when the invoice credit memo was allocated.

currency_codestringnullable

The ISO 4217 currency code of the invoice credit memo.

memostringnullable

The memo of the invoice credit memo.

statusenumnullable

The status of the invoice credit memo.

One ofOPENAPPLIEDPARTIALLY_APPLIED, or UNKNOWN.
total_amountstringnullable

The total amount on the invoice credit memo.

remaining_amountstringnullable

The remaining unapplied amount of the invoice credit memo.

linked_invoicesarray

An array of Rutter IDs of Invoices linked to the invoice credit memo.

Show linked_invoices attributes
Example InvoiceCreditMemo Object
{
  "id": "00000000-0000-0000-0000-000000000000",
  "platform_id": "12345678",
  "customer_id": "00000000-0000-0000-0000-000000000000",
  "document_number": "CUSTCRED-1",
  "issue_date": "2023-01-02T02:34:56.000Z",
  "allocated_at": "2023-01-02T02:34:56.000Z",
  "currency_code": "USD",
  "memo": "Discount for future Rutter shirts.",
  "status": "APPLIED",
  "total_amount": "3",
  "remaining_amount": "0",
  "linked_invoices": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "allocated_amount": "3"
    }
  ]
}

List Invoice Credit Memos

GET /accounting/invoice_credit_memos
Supported for: NetSuite

Request Parameters

    access_tokenstringquery

    The access token of the connection.

    cursorstringoptionalquery

    The cursor to use for pagination. This value is passed in from next_cursor field in a previous request.

    expandenumoptionalquery

    Used to request inclusion of optional objects.

    Can beplatform_data.
    force_fetchenumoptionalquery

    Force a response even if the underlying connection hasn't finished the initial sync.

    One oftrue or false.
    limitintegeroptionalquery

    The limit on the number of entities returned.

    updated_at_maxintegeroptionalquery

    The Unix Timestamp in milliseconds maximum updated_at datetime to fetch entities from.

    updated_at_minintegeroptionalquery

    The Unix Timestamp in milliseconds minimum updated_at datetime to fetch entities from.

Response Body

    invoice_credit_memosarray
    Show invoice_credit_memos attributes
    next_cursorstringnullable
Example Response Body
{
  "invoice_credit_memos": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "platform_id": "12345678",
      "customer_id": "00000000-0000-0000-0000-000000000000",
      "document_number": "CUSTCRED-1",
      "issue_date": "2023-01-02T02:34:56.000Z",
      "allocated_at": "2023-01-02T02:34:56.000Z",
      "currency_code": "USD",
      "memo": "Discount for future Rutter shirts.",
      "status": "APPLIED",
      "total_amount": "3",
      "remaining_amount": "0",
      "linked_invoices": [
        {
          "id": "00000000-0000-0000-0000-000000000000",
          "allocated_amount": "3"
        }
      ]
    }
  ],
  "next_cursor": "MTY3NDgzMTk0Ml82MDY4ZDI0ZC02NGRmLTRmN2EtYTM0Ny0zN2ZmNjY5MGVmMjU="
}

Fetch an Invoice Credit Memo

GET /accounting/invoice_credit_memos/:id
Supported for: NetSuite

Request Parameters

    idstringpath

    The Rutter generated unique ID of the object.

    access_tokenstringquery

    The access token of the connection.

    force_fetchenumoptionalquery

    Force a response even if the underlying connection hasn't finished the initial sync.

    One oftrue or false.

Response Body

    invoice_credit_memonullable
    Show invoice_credit_memo attributes
Example Response Body
{
  "invoice_credit_memo": {
    "id": "00000000-0000-0000-0000-000000000000",
    "platform_id": "12345678",
    "customer_id": "00000000-0000-0000-0000-000000000000",
    "document_number": "CUSTCRED-1",
    "issue_date": "2023-01-02T02:34:56.000Z",
    "allocated_at": "2023-01-02T02:34:56.000Z",
    "currency_code": "USD",
    "memo": "Discount for future Rutter shirts.",
    "status": "APPLIED",
    "total_amount": "3",
    "remaining_amount": "0",
    "linked_invoices": [
      {
        "id": "00000000-0000-0000-0000-000000000000",
        "allocated_amount": "3"
      }
    ]
  }
}
Previous
Invoices