TAG LINE
TAG LINE
SMALL TITLE
System defined list of levels of sharing that can occur. Such as account level or invoice recipient level.
identity READ-ONLY | "identity": 17 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. |
| GET | Usage/Bucket/ShareLevel/ |
| Retrieve all of the UsageBucketShareLevel objects. | |
Retrieve all of the UsageBucketShareLevel objects. GET Usage/Bucket/ShareLevel/ HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"totalCount": 1,
"items": [
{
"identity": 1,
"name": "Account",
"description": "Account level"
}
]
} | |
| GET | Usage/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 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"
}
]
}
} | |
| GET | Usage/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}HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"instance": {
"identity": 1,
"name": "Account",
"description": "Account level"
}
} | |