Retrieves all sales organizations, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of sales organizations.

sales_organization
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier

Required

name

Name of the organization

string
commercial_name

Commercial name

string
db_country_id

Default country to be used when creating new company

globally unique identifier
db_language_id

Default language of the organization (will be used when nothing is set)

globally unique identifier
db_currency_id

Currency of the organization

globally unique identifier
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date
sales_organization_logo

Logo of the organization, as raw image bytes.

Collection of byte
street

Address:Street of the organization's registered address.

string
street_number

Address:Street number of the organization's registered address.

string
zip

Address:Zip of the organization's registered address.

string
city

Address:City of the organization's registered address.

string
email

Contact email address of the organization.

string
phone

Contact phone number of the organization.

string
fax

Fax number of the organization.

string
url

Website URL of the organization.

string
latitude_decimal

Latitude of the organization's registered address.

decimal number
longitude_decimal

Longitude of the organization's registered address.

decimal number
vat_reg_code

VAT registration number of the organization.

string
bankaccount

Bank account number (e.g. IBAN) of the organization.

string
bic_code

BIC/SWIFT code of the organization's bank.

string
gln_code

GLN (Global Location Number) of the organization.

string
accountancy_code

Accountancy/bookkeeping reference code of the organization.

string
db_currency_code

ISO code of the organization's currency (denormalized copy of the currency record).

string
db_currency_name

Display name of the organization's currency (denormalized copy of the currency record).

string
db_currency_symbol

Display symbol of the organization's currency (denormalized copy of the currency record).

string
sys_business_hours

Serialized configuration of the organization's business/opening hours.

string

Response Formats

application/json, text/json

Sample:
{
  "id": "6bed1c34-4dc0-4b62-a2e6-84a3b0faf87a",
  "name": "sample string 2",
  "commercial_name": "sample string 3",
  "db_country_id": "84da8ee8-dcee-4bdb-b552-3f9a3e44ceba",
  "db_language_id": "8e0f11f8-0178-45fd-a9cd-12f1d3884c06",
  "db_currency_id": "e520a2e5-5ab5-4c50-b966-7e750c8e2ea5",
  "modified_dateutc": "2026-09-16T09:23:40.3984479+00:00",
  "sales_organization_logo": "QEA=",
  "street": "sample string 8",
  "street_number": "sample string 9",
  "zip": "sample string 10",
  "city": "sample string 11",
  "email": "sample string 12",
  "phone": "sample string 13",
  "fax": "sample string 14",
  "url": "sample string 15",
  "latitude_decimal": 16.0,
  "longitude_decimal": 17.0,
  "vat_reg_code": "sample string 18",
  "bankaccount": "sample string 19",
  "bic_code": "sample string 20",
  "gln_code": "sample string 21",
  "accountancy_code": "sample string 22",
  "db_currency_code": "sample string 23",
  "db_currency_name": "sample string 24",
  "db_currency_symbol": "sample string 25",
  "sys_business_hours": "sample string 26"
}

application/xml, text/xml

Sample:
<sales_organization xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <accountancy_code>sample string 22</accountancy_code>
  <bankaccount>sample string 19</bankaccount>
  <bic_code>sample string 20</bic_code>
  <city>sample string 11</city>
  <commercial_name>sample string 3</commercial_name>
  <db_country_id>84da8ee8-dcee-4bdb-b552-3f9a3e44ceba</db_country_id>
  <db_currency_code>sample string 23</db_currency_code>
  <db_currency_id>e520a2e5-5ab5-4c50-b966-7e750c8e2ea5</db_currency_id>
  <db_currency_name>sample string 24</db_currency_name>
  <db_currency_symbol>sample string 25</db_currency_symbol>
  <db_language_id>8e0f11f8-0178-45fd-a9cd-12f1d3884c06</db_language_id>
  <email>sample string 12</email>
  <fax>sample string 14</fax>
  <gln_code>sample string 21</gln_code>
  <id>6bed1c34-4dc0-4b62-a2e6-84a3b0faf87a</id>
  <latitude_decimal>16</latitude_decimal>
  <longitude_decimal>17</longitude_decimal>
  <modified_dateutc>2026-09-16T09:23:40.398Z</modified_dateutc>
  <name>sample string 2</name>
  <phone>sample string 13</phone>
  <sales_organization_logo>QEA=</sales_organization_logo>
  <street>sample string 8</street>
  <street_number>sample string 9</street_number>
  <sys_business_hours>sample string 26</sys_business_hours>
  <url>sample string 15</url>
  <vat_reg_code>sample string 18</vat_reg_code>
  <zip>sample string 10</zip>
</sales_organization>