TAG LINE
TAG LINE
SMALL TITLE

Usage / Bucket / Share Level

(API Version v6)


System defined list of levels of sharing that can occur. Such as account level or invoice recipient level.


What can you do with UsageBucketShareLevel?


Properties

Property Details
identity
READ-ONLY
"identity": 27
Type: Number
This is the unique numeric identifier for the UsageBucketShareLevel
name
READ-ONLY
"name": "Account"
Type: String
System defined name for the Share Level.
description
READ-ONLY
"description": "Account level"
Type: String
System defined description for the Share Level.


End Points

GETUsage/Bucket/ShareLevel/
Retrieve all of the UsageBucketShareLevel objects.
Retrieve all of the UsageBucketShareLevel objects.
GET Usage/Bucket/ShareLevel/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "name": "Account",
            "description": "Account level"
        }
    ]
}
GETUsage/Bucket/ShareLevel/Paged
Retrieve all of the UsageBucketShareLevel 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 UsageBucketShareLevel objects in a paged fashion.
GET Usage/Bucket/ShareLevel/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,
                "name": "Account",
                "description": "Account level"
            }
        ]
    }
}
GETUsage/Bucket/ShareLevel/{id}
Retrieve an instance of the UsageBucketShareLevel object by its ID.
{id}Unique identifier for the UsageBucketShareLevel object.
Retrieve an instance of the UsageBucketShareLevel object by its ID.
GET Usage/Bucket/ShareLevel/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "name": "Account",
        "description": "Account level"
    }
}