TAG LINE
TAG LINE
SMALL TITLE

Usage / Bucket / Base Unit

(API Version v7)


System defined unit of counting in a Base Bucket such as Count, Data or Time.


What can you do with UsageBucketBaseUnit?


Properties

Property Details
identity
READ-ONLY
"identity": 18
Type: Number
This is the unique numeric identifier for the UsageBucketBaseUnit
usageBaseUnitId
"usageBaseUnitId": 9
Type: Number
Unique identifier for the associated UsageBaseUnit object.
usageBaseUnitName
"usageBaseUnitName": "Sample Name"
Type: String
The name of the object associated with the usageBaseUnitId property.
name
READ-ONLY
"name": "Count"
Type: String
System defined name for the Base Unit.
description
READ-ONLY
"description": "Counting items"
Type: String
System defined description for the Base Unit.
sortOrder
READ-ONLY
"sortOrder": 23
Type: Number
Unused
visible
READ-ONLY
"visible": true
Type: Boolean
Whether or not this Base Unit is visible in the user interface.
isBaseBucketEligible
"isBaseBucketEligible": true
Type: Boolean


End Points

GETUsage/Bucket/BaseUnit/
Retrieve all of the UsageBucketBaseUnit objects.
Retrieve all of the UsageBucketBaseUnit objects.
GET Usage/Bucket/BaseUnit/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "usageBaseUnitId": 5,
            "usageBaseUnitName": "Sample Text Data",
            "name": "Count",
            "description": "Counting items",
            "sortOrder": 6,
            "visible": true,
            "isBaseBucketEligible": true
        }
    ]
}
GETUsage/Bucket/BaseUnit/Paged
Retrieve all of the UsageBucketBaseUnit 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 UsageBucketBaseUnit objects in a paged fashion.
GET Usage/Bucket/BaseUnit/Paged
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "pagination": {
        "pageNumber": 1,
        "pageSize": 20,
        "excludeTotalCount": false
    },
    "pagedResults": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "usageBaseUnitId": 4,
                "usageBaseUnitName": "Sample Text Data",
                "name": "Count",
                "description": "Counting items",
                "sortOrder": 12,
                "visible": true,
                "isBaseBucketEligible": true
            }
        ]
    }
}
GETUsage/Bucket/BaseUnit/{id}
Retrieve an instance of the UsageBucketBaseUnit object by its ID.
{id}Unique identifier for the UsageBucketBaseUnit object.
Retrieve an instance of the UsageBucketBaseUnit object by its ID.
GET Usage/Bucket/BaseUnit/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "usageBaseUnitId": 4,
        "usageBaseUnitName": "Sample Text Data",
        "name": "Count",
        "description": "Counting items",
        "sortOrder": 4,
        "visible": true,
        "isBaseBucketEligible": true
    }
}