Retrieves the equipment_brand object with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
equipment_brand| Name | Description | Type | Additional 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": "64f4ee8a-d585-49f2-8f78-834d4380e570",
"name": "sample string 2",
"sales_organization_id": "42070a3b-d316-429c-b299-e266c2b8e74f",
"modified_dateutc": "2026-06-16T21:24:12.5856757+00:00"
}
application/xml, text/xml
Sample:
<equipment_brand xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>64f4ee8a-d585-49f2-8f78-834d4380e570</id> <modified_dateutc>2026-06-16T21:24:12.585Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>42070a3b-d316-429c-b299-e266c2b8e74f</sales_organization_id> </equipment_brand>