TAG LINE
TAG LINE
SMALL TITLE
Internal pick list for the different types of base usage that can be rated. Examples are count, data or time.
identity READ-ONLY | "identity": 22 Type: Number This is the unique numeric identifier for the UsageBaseUnit |
name READ-ONLY | "name": "Data" Type: String System name for this Base Unit |
description READ-ONLY | "description": "Data calculated rates" Type: String Description of the Base Unit. |
baseUnit READ-ONLY | "baseUnit": "bytes" Type: String Different options for calculation such as bytes or seconds |
baseUnitDescription READ-ONLY | "baseUnitDescription": "Calculated at the Byte level." Type: String System description for the baseUnit. |
sortOrder READ-ONLY | "sortOrder": 12 Type: Number Unused |
visible READ-ONLY | "visible": true Type: Boolean Whether or not this Base Unit is visible in the user interface. |
GET | Usage/BaseUnit/ |
Retrieve all of the UsageBaseUnit objects. | |
Retrieve all of the UsageBaseUnit objects. GET Usage/BaseUnit/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "name": "Data", "description": "Data calculated rates", "baseUnit": "bytes", "baseUnitDescription": "Calculated at the Byte level.", "sortOrder": 15, "visible": true } ] } |
GET | Usage/BaseUnit/Paged |
Retrieve all of the UsageBaseUnit objects in a paged fashion. This endpoint implements pagination for its results. Individual pages can be requested to return a particular paged set in the list of results. To learn more, see details on working with paginated endpoints. | |
Retrieve all of the UsageBaseUnit objects in a paged fashion. GET Usage/BaseUnit/Paged HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "pagination": { "pageNumber": 1, "pageSize": 20, "excludeTotalCount": false }, "pagedResults": { "totalCount": 1, "items": [ { "identity": 1, "name": "Data", "description": "Data calculated rates", "baseUnit": "bytes", "baseUnitDescription": "Calculated at the Byte level.", "sortOrder": 2, "visible": true } ] } } |
GET | Usage/BaseUnit/{id} |
Retrieve an instance of the UsageBaseUnit object by its ID. | |
{id} | Unique identifier for the UsageBaseUnit object. |
Retrieve an instance of the UsageBaseUnit object by its ID. GET Usage/BaseUnit/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "name": "Data", "description": "Data calculated rates", "baseUnit": "bytes", "baseUnitDescription": "Calculated at the Byte level.", "sortOrder": 9, "visible": true } } |