companyInformation resource type

Represents a company information in Business Central.

Note

For information about enabling APIs for Business Central see Enabling the APIs for Dynamics 365 Business Central.

Methods

Method Return Type Description
GET companyInformation companyInformation Gets a company information object.
PATCH companyInformation companyInformation Updates a company information object.

Properties

Property Type Description
id GUID The unique ID of the company information. Non-editable.
displayName string Specifies the company information's name. This name will appear on all sales documents for the company information.
addressLine1 string Specifies the company information's address. This address will appear on all sales documents for the company information.
addressLine2 string Specifies the company information's address. This address will appear on all sales documents for the company information.
city string Specifies the company information's city.
state string Specifies the company information's state.
country string Specifies the company information's country.
postalCode string Specifies the company information's postal code.
phoneNumber string Specifies the company information's telephone number.
faxNumber string The company's fax number.
email string Specifies the company information's email address.
website string Specifies the company information's home page address.
taxRegistrationNumber string Specified the tax registration number of the company information.
currencyCode string The default currency code for the company information.
currentFiscalYearStartDate date The company's current fiscal year start date. Read-Only.
industry string The industry the company is part of.
picture stream The company information's picture.
lastModifiedDateTime datetime The last datetime the company information was modified. Read-Only.

JSON representation

Here is a JSON representation of the companyInformation resource.

{
    "id": "GUID",
    "displayName": "string",
    "addressLine1": "string",
    "addressLine2": "string",
    "city": "string",
    "state": "string",
    "country": "string",
    "postalCode": "string",
    "phoneNumber": "string",
    "faxNumber": "string",
    "email": "string",
    "website": "string",
    "taxRegistrationNumber": "string",
    "currencyCode": "string",
    "currentFiscalYearStartDate": "date",
    "industry": "string",
    "picture": "stream",
    "lastModifiedDateTime": "datetime"
}

See Also

GET companyInformation
PATCH companyInformation