Retrieves the equipment_brand object with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

equipment_brand
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of the equipment brand

string

Required

Max length: 50

sales_organization_id

FK of sales_organization. Filled if specific of one SO, empty if can be used by all

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": "32b53917-2fc4-4130-84c7-39317d64b85d",
  "name": "sample string 2",
  "sales_organization_id": "97a77332-1bd9-4e67-a618-20d93d8e4be8",
  "modified_dateutc": "2026-01-12T00:22:50.6806872+00:00"
}

application/xml, text/xml

Sample:
<equipment_brand xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>32b53917-2fc4-4130-84c7-39317d64b85d</id>
  <modified_dateutc>2026-01-12T00:22:50.680Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>97a77332-1bd9-4e67-a618-20d93d8e4be8</sales_organization_id>
</equipment_brand>