Retrieves all settings, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of settings.

settings
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
code

Key/name identifying which setting this record holds the value for.

string
value

Value of the setting identified by , stored as text.

string
sales_organization_id

Foreign key of the sales organization this setting applies to.

globally unique identifier
user_id

Foreign key of the user this setting applies to, when scoped to an individual user rather than the whole organization.

globally unique identifier
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "a1298bb1-b89c-492a-a3f0-6e842ca677a3",
  "code": "sample string 2",
  "value": "sample string 3",
  "sales_organization_id": "e4710e01-32fc-41c6-8874-0e53069a29ab",
  "user_id": "3bc7988b-dce7-48e6-ae70-a00231d20af9",
  "modified_dateutc": "2026-09-16T10:12:54.1196892+00:00"
}

application/xml, text/xml

Sample:
<settings xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <code>sample string 2</code>
  <id>a1298bb1-b89c-492a-a3f0-6e842ca677a3</id>
  <modified_dateutc>2026-09-16T10:12:54.119Z</modified_dateutc>
  <sales_organization_id>e4710e01-32fc-41c6-8874-0e53069a29ab</sales_organization_id>
  <user_id>3bc7988b-dce7-48e6-ae70-a00231d20af9</user_id>
  <value>sample string 3</value>
</settings>