TAG LINE
TAG LINE
SMALL TITLE

Usage / Bucket / Base

(API Version v6)


Defines the base unit of measure for a Bucket such as Time, Data or Count. New Bucket definitions derrive from a Base Bucket.


What can you do with UsageBucketBase?


Properties

Property Details
identity
READ-ONLY
"identity": 15
Type: Number
This is the unique numeric identifier for the UsageBucketBase
ownerId
READ-ONLY
"ownerId": 3
Type: Number
Unique identifier for the associated Owner object.
ownerName
READ-ONLY
"ownerName": "Sample Name"
Type: String
The name of the object associated with the ownerId property.
name
"name": "Data Bucket for Western Europe"
Type: String
User defined name for this Base Bucket
start
"start": "2021-04-26T15:25:27.587Z"
Type: Date
Unused

Date and time values are specified in the ISO 8601 format.
end
"end": "2021-04-26T15:25:27.587Z"
Type: Date
When flagged as retired this end date will be marked and can no longer be used.

Date and time values are specified in the ISO 8601 format.
retired
"retired": true
Type: Boolean
Whether or not this Base Bucket has been retired.
usageBucketBaseUnitId
"usageBucketBaseUnitId": 23
Type: Number
Unique identifier for the associated UsageBucketBaseUnit object.
usageBucketBaseUnitName
"usageBucketBaseUnitName": "Sample Name"
Type: String
The name of the object associated with the usageBucketBaseUnitId property.


Patch Types

The PATCH verb allows you to update an object. Just like a put, you only need to supply the fields that will be updated in the payload. However, a patch allows you to update many objects at once.

PATCH operations can be used as a standard API call. Below you will find the child objects that can be updated as part of PATCH operations for the UsageBucketBase object.

Standard PATCH objects:

DataFlow PATCH objects:


End Points

DELETEUsage/Bucket/Base/{id}
Delete an instance of the UsageBucketBase object. Upon successful delete, this API will return a record of all of the reelated objects deleted with this operation. The specifics on which objects have been deleted will depend on which related objects have been populated in the system.
{id}Unique identifier for the UsageBucketBase object.
Delete an instance of the UsageBucketBase object.
DELETE Usage/Bucket/Base/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "delete",
    "results": {
        "totalCount": 4,
        "items": [
            {
                "identity": 1,
                "action": "deleted",
                "dtoTypeKey": "usageBucketBase"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
GETUsage/Bucket/Base/
Retrieve all of the UsageBucketBase objects.
Retrieve all of the UsageBucketBase objects.
GET Usage/Bucket/Base/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "ownerId": 5,
            "ownerName": "Sample Text Data",
            "name": "Data Bucket for Western Europe",
            "start": "2021-04-26T15:25:27.587Z",
            "end": "2021-04-26T15:25:27.587Z",
            "retired": true,
            "usageBucketBaseUnitId": 3,
            "usageBucketBaseUnitName": "Sample Text Data"
        }
    ]
}
GETUsage/Bucket/Base/Paged
Retrieve all of the UsageBucketBase 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 UsageBucketBase objects in a paged fashion.
GET Usage/Bucket/Base/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,
                "ownerId": 16,
                "ownerName": "Sample Text Data",
                "name": "Data Bucket for Western Europe",
                "start": "2021-04-26T15:25:27.587Z",
                "end": "2021-04-26T15:25:27.587Z",
                "retired": true,
                "usageBucketBaseUnitId": 8,
                "usageBucketBaseUnitName": "Sample Text Data"
            }
        ]
    }
}
GETUsage/Bucket/Base/Paged/Detail
Retrieve all of the UsageBucketBase objects in a paged fashion with all object details. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system.
Retrieve all of the UsageBucketBase objects in a paged fashion with all object details.
GET Usage/Bucket/Base/Paged/Detail
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,
                "ownerId": 19,
                "ownerName": "Sample Text Data",
                "name": "Data Bucket for Western Europe",
                "start": "2021-04-26T15:25:27.587Z",
                "end": "2021-04-26T15:25:27.587Z",
                "retired": true,
                "usageBucketBaseUnitId": 1,
                "usageBucketBaseUnitName": "Sample Text Data",
                "details": {
                    "identity": 25,
                    "usageBucketBaseId": 23,
                    "usageBucketBaseName": "Sample Text Data",
                    "usageClassId": 74,
                    "usageClassName": "Sample Text Data",
                    "geoTreeLocationId": 73,
                    "geoTreeLocationName": "Sample Text Data",
                    "exclude": true,
                    "geoTreeLocationGroupId": 74,
                    "geoTreeLocationGroupName": "Sample Text Data"
                }
            }
        ]
    }
}
GETUsage/Bucket/Base/{id}
Retrieve an instance of the UsageBucketBase object by its ID.
{id}Unique identifier for the UsageBucketBase object.
Retrieve an instance of the UsageBucketBase object by its ID.
GET Usage/Bucket/Base/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 16,
        "ownerName": "Sample Text Data",
        "name": "Data Bucket for Western Europe",
        "start": "2021-04-26T15:25:27.587Z",
        "end": "2021-04-26T15:25:27.587Z",
        "retired": true,
        "usageBucketBaseUnitId": 10,
        "usageBucketBaseUnitName": "Sample Text Data"
    }
}
GETUsage/Bucket/Base/{id}/Detail
Retrieve deep detail of the UsageBucketBase object by its ID. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system.
{id}Unique identifier for the UsageBucketBase object.
Retrieve deep detail of the UsageBucketBase object by its ID.
GET Usage/Bucket/Base/{id}/Detail
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 10,
        "ownerName": "Sample Text Data",
        "name": "Data Bucket for Western Europe",
        "start": "2021-04-26T15:25:27.587Z",
        "end": "2021-04-26T15:25:27.587Z",
        "retired": true,
        "usageBucketBaseUnitId": 4,
        "usageBucketBaseUnitName": "Sample Text Data",
        "details": {
            "identity": 25,
            "usageBucketBaseId": 23,
            "usageBucketBaseName": "Sample Text Data",
            "usageClassId": 74,
            "usageClassName": "Sample Text Data",
            "geoTreeLocationId": 73,
            "geoTreeLocationName": "Sample Text Data",
            "exclude": true,
            "geoTreeLocationGroupId": 74,
            "geoTreeLocationGroupName": "Sample Text Data"
        }
    }
}
PATCHUsage/Bucket/Base/{id}
Update or Add the UsageBucketBase object and optionally make changes to any child objects. Patch end points allow for adding/updating multiple related entities and the results of those changes will be reported in the response JSON payload in the items array.
{id}Unique identifier for the UsageBucketBase object.
Update or Add the UsageBucketBase object and optionally make changes to any child objects.
PATCH Usage/Bucket/Base/{id}

{
    "details": {},
    "usageBucketBases": {
        "items": [
            {
                "patchType": "create",
                "patchClientId": 1,
                "name": "Data Bucket for Western Europe",
                "start": "2021-04-26T15:25:27.587Z",
                "end": "2021-04-26T15:25:27.587Z",
                "retired": true,
                "usageBucketBaseUnitId": 9
            }
        ]
    }
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "patch",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "action": "created",
                "dtoTypeKey": "usageBucketBase",
                "instance": {
                    "identity": 1,
                    "ownerId": 22,
                    "ownerName": "Sample Text Data",
                    "name": "Data Bucket for Western Europe",
                    "start": "2021-04-26T15:25:27.587Z",
                    "end": "2021-04-26T15:25:27.587Z",
                    "retired": true,
                    "usageBucketBaseUnitId": 25,
                    "usageBucketBaseUnitName": "Sample Text Data"
                }
            }
        ]
    }
}
POSTUsage/Bucket/Base/
Create a new instance of the UsageBucketBase object.
Create a new instance of the UsageBucketBase object.
POST Usage/Bucket/Base/

{
    "name": "Data Bucket for Western Europe",
    "start": "2021-04-26T15:25:27.587Z",
    "end": "2021-04-26T15:25:27.587Z",
    "retired": true,
    "usageBucketBaseUnitId": 5
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 9,
                "ownerName": "Sample Text Data",
                "name": "Data Bucket for Western Europe",
                "start": "2021-04-26T15:25:27.587Z",
                "end": "2021-04-26T15:25:27.587Z",
                "retired": true,
                "usageBucketBaseUnitId": 8,
                "usageBucketBaseUnitName": "Sample Text Data"
            }
        ]
    }
}
PUTUsage/Bucket/Base/{id}
Update an existing instance of the UsageBucketBase object.
Update an existing instance of the UsageBucketBase object.
PUT Usage/Bucket/Base/{id}

{
    "identity": 1,
    "name": "Data Bucket for Western Europe",
    "start": "2021-04-26T15:25:27.587Z",
    "end": "2021-04-26T15:25:27.587Z",
    "retired": true,
    "usageBucketBaseUnitId": 26
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 20,
                "ownerName": "Sample Text Data",
                "name": "Data Bucket for Western Europe",
                "start": "2021-04-26T15:25:27.587Z",
                "end": "2021-04-26T15:25:27.587Z",
                "retired": true,
                "usageBucketBaseUnitId": 24,
                "usageBucketBaseUnitName": "Sample Text Data"
            }
        ]
    }
}