The Company Info object

A Rutter Company Info contains basic information about the business entity like their contact name, business name, and default currency.

Properties

idstring

The Rutter generated unique ID of the object.

namestring

The DBA name of the company.

legal_namestringoptional

The legal name of the company.

addressesarray

A list of addresses linked to the company.

String array.

platform_idstringnullable

The platform specific ID of the object.

createdAtstring

The ISO 8601 timestamp that the object was created.

updatedAtstring

The ISO 8601 timestamp that the object was last updated.

base_currency_codeenum

The ISO 4217 currency code of the company.

One ofAEDAFNALLAMDANGAOAARSAUDAWGAZNBAMBBDBDTBGNBHDBIFBMDBNDBOBBOVBRLBSDBTNBWPBYRBZDCADCDFCHECHFCHWCLFCLPCNYCOPCOUCRCCUCCUPCVECZKDJFDKKDOPDZDEGPERNETBEURFJDFKPGBPGELGHSGIPGMDGNFGTQGYDHKDHNLHRKHTGHUFIDRILSINRIQDIRRISKJMDJODJPYKESKGSKHRKMFKPWKRWKWDKYDKZTLAKLBPLKRLRDLSLLTLLVLLYDMADMDLMGAMKDMMKMNTMOPMROMURMVRMWKMXNMXVMYRMZNNADNGNNIONOKNPRNZDOMRPABPENPGKPHPPKRPLNPYGQARRONRSDRUBRWFSARSBDSCRSDGSEKSGDSHPSLLSOSSRDSSPSTDSYPSZLTHBTJSTMTTNDTOPTRYTTDTWDTZSUAHUGXUSDUSNUSSUYIUYUUZSVEFVNDVUVWSTXAFXAGXAUXBAXBBXBCXBDXCDXDRXFUXOFXPDXPFXPTXTSXXXYERZAR, or ZMW.
Example CompanyInfo Object
{
  "id": "00000000-0000-0000-0000-000000000000",
  "platform_id": "12345678",
  "name": "Rutter API",
  "legal_name": "RutterAPI Inc.",
  "addresses": [
    "123 Rutter Road, San Francisco, CA 94110"
  ],
  "base_currency_code": "USD",
  "createdAt": "2023-01-02T02:34:56.000Z",
  "updatedAt": "2023-01-02T02:34:56.000Z"
}

Fetch Company Info

GET /accounting/company_info
Supported for: Dynamics 365Fresh BooksNetSuiteQuickBooksQuickBooks DesktopSage Business CloudSage IntacctWaveXeroZoho Books

Request Parameters

    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

    connectionConnection
    Show connection attributes
    company_infoCompany Info
    Show company_info attributes
Example Response Body
{
  "company_info": {
    "id": "00000000-0000-0000-0000-000000000000",
    "platform_id": "12345678",
    "name": "Rutter API",
    "legal_name": "RutterAPI Inc.",
    "addresses": [
      "123 Rutter Road, San Francisco, CA 94110"
    ],
    "base_currency_code": "USD",
    "createdAt": "2023-01-02T02:34:56.000Z",
    "updatedAt": "2023-01-02T02:34:56.000Z"
  },
  "connection": {
    "id": "00000000-0000-0000-0000-000000000000",
    "platform": "NETSUITE",
    "orgId": "00000000-0000-0000-0000-000000000000"
  }
}
Previous
Payouts