/bid/uom
This action lists all active Unit of Measure (UOM) items.
Request
Example:
curl -H 'Content-Type: application/json' \
-H 'Authorization: Bearer ACCESS_TOKEN' \
https://ppw.web/svc/bid/uom
Response
| Field | Description | Type |
|---|---|---|
uom | Unit of measure items | object |
In the uom JSON object, the key is the unique identifier for the UOM
and the value is the name of the UOM.
Example successful response:
{
"uom": {
"1": "feet",
"2": "pounds"
}
}
Errors
| Error Type | Description | Status Code |
|---|---|---|
access_denied | Access token is invalid or expired | 401 |
scope_invalid | Client app does not have the required OAuth scope | 403 |