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": "9f986293-4e3e-4d10-bd07-8647935a29b7",
  "name": "sample string 2",
  "sales_organization_id": "91e8ed39-2bab-4f87-a237-cfd1edc06483",
  "modified_dateutc": "2026-03-07T14:54:52.3781606+00:00"
}

application/xml, text/xml

Sample:
<equipment_brand xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>9f986293-4e3e-4d10-bd07-8647935a29b7</id>
  <modified_dateutc>2026-03-07T14:54:52.378Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>91e8ed39-2bab-4f87-a237-cfd1edc06483</sales_organization_id>
</equipment_brand>