Retrieves all equipment brands, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of equipment brands.
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": "7964c459-d51f-4857-a71b-2831049eb87a",
"name": "sample string 2",
"sales_organization_id": "feb9e8fa-a238-4151-9dbe-666fa571af1f",
"modified_dateutc": "2026-09-16T08:37:38.4187057+00:00"
}
application/xml, text/xml
Sample:
<equipment_brand xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>7964c459-d51f-4857-a71b-2831049eb87a</id> <modified_dateutc>2026-09-16T08:37:38.418Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>feb9e8fa-a238-4151-9dbe-666fa571af1f</sales_organization_id> </equipment_brand>