Retrieves the equipment brand with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The equipment brand id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the equipment brand, or 404 Not Found if it doesn't exist.

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": "5702edf2-f43b-42e3-a451-033ae744e93e",
  "name": "sample string 2",
  "sales_organization_id": "6c84b47b-a986-4ffe-95e3-55d4a608d69f",
  "modified_dateutc": "2026-09-16T10:18:21.3030421+00:00"
}

application/xml, text/xml

Sample:
<equipment_brand xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>5702edf2-f43b-42e3-a451-033ae744e93e</id>
  <modified_dateutc>2026-09-16T10:18:21.303Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>6c84b47b-a986-4ffe-95e3-55d4a608d69f</sales_organization_id>
</equipment_brand>