TAG LINE
TAG LINE
SMALL TITLE

Usage / Rate / Group

(API Version v6)


Defines a container that groups multiple rates together so that they can be reused in multiple plans.


What can you do with UsageRateGroup?


Properties

Property Details
identity
READ-ONLY
"identity": 5
Type: Number
This is the unique numeric identifier for the UsageRateGroup
ownerId
READ-ONLY
"ownerId": 18
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": "All Zone 2 Data Rates"
Type: String
The user defined name for the Rate Group
start
"start": "2021-04-26T15:25:27.587Z"
Type: Date
The start date in which this group of rates come into effect.

Date and time values are specified in the ISO 8601 format.
end
READ-ONLY
"end": "2021-04-26T15:25:27.587Z"
Type: Date
System stamped time for when this group was retired.

Date and time values are specified in the ISO 8601 format.
useForCost
"useForCost": true
Type: Boolean
Whether or not this Rate Group is used for cost calculation
timePeriodId
"timePeriodId": 8
Type: Number
Unique identifier for the associated TimePeriod object.
timePeriodName
"timePeriodName": "Sample Name"
Type: String
The name of the object associated with the timePeriodId property.
displayName
"displayName": "Gold Rates"
Type: String
The user defined "friendly" name for this Rate Group to display on reports etc.
currencyId
"currencyId": 6
Type: Number
Unique identifier for the associated Currency object.
currencyName
"currencyName": "Sample Name"
Type: String
The name of the object associated with the currencyId property.
isAggregated
"isAggregated": true
Type: Boolean
Whether or not this Rate Group will have all the rates in the group aggregate together.
isPassThrough
"isPassThrough": true
Type: Boolean
Whether or not this Rate Group is supposed to pass through the values already provided in the usage feed.
amountPrecision
"amountPrecision": 24
Type: Number
The number of decimal places to round. Maximum of 11.
roundingMethodTypeId
"roundingMethodTypeId": 21
Type: Number
Unique identifier for the associated RoundingMethodType object.
roundingMethodTypeName
"roundingMethodTypeName": "Sample Name"
Type: String
The name of the object associated with the roundingMethodTypeId property.
created
READ-ONLY
"created": "2021-04-26T15:25:27.587Z"
Type: Date
This is a system generated date when the record was created. Date and time values are specified in the ISO 8601 format.
updated
"updated": "2021-04-26T15:25:27.587Z"
Type: Date
Date and time values are specified in the ISO 8601 format.


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 UsageRateGroup object.

Standard PATCH objects:

  • usageRatePlan - create, update, delete
  • usageRateGroupFilter - create, update, delete
  • usageRate - create, update, delete

DataFlow PATCH objects:


End Points

DELETEUsage/Rate/Group/{id}
Delete an instance of the UsageRateGroup 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 UsageRateGroup object.
Delete an instance of the UsageRateGroup object.
DELETE Usage/Rate/Group/{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": "usageRateGroup"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
GETUsage/Rate/Group/
Retrieve all of the UsageRateGroup objects.
Retrieve all of the UsageRateGroup objects.
GET Usage/Rate/Group/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "ownerId": 4,
            "ownerName": "Sample Text Data",
            "name": "All Zone 2 Data Rates",
            "start": "2021-04-26T15:25:27.587Z",
            "end": "2021-04-26T15:25:27.587Z",
            "useForCost": true,
            "timePeriodId": 24,
            "timePeriodName": "Sample Text Data",
            "displayName": "Gold Rates",
            "currencyId": 3,
            "currencyName": "Sample Text Data",
            "isAggregated": true,
            "isPassThrough": true,
            "amountPrecision": 6,
            "roundingMethodTypeId": 3,
            "roundingMethodTypeName": "Sample Text Data",
            "created": "2021-04-26T15:25:27.587Z",
            "updated": "2021-04-26T15:25:27.587Z"
        }
    ]
}
GETUsage/Rate/Group/Paged
Retrieve all of the UsageRateGroup 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 UsageRateGroup objects in a paged fashion.
GET Usage/Rate/Group/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": 15,
                "ownerName": "Sample Text Data",
                "name": "All Zone 2 Data Rates",
                "start": "2021-04-26T15:25:27.587Z",
                "end": "2021-04-26T15:25:27.587Z",
                "useForCost": true,
                "timePeriodId": 2,
                "timePeriodName": "Sample Text Data",
                "displayName": "Gold Rates",
                "currencyId": 20,
                "currencyName": "Sample Text Data",
                "isAggregated": true,
                "isPassThrough": true,
                "amountPrecision": 16,
                "roundingMethodTypeId": 15,
                "roundingMethodTypeName": "Sample Text Data",
                "created": "2021-04-26T15:25:27.587Z",
                "updated": "2021-04-26T15:25:27.587Z"
            }
        ]
    }
}
GETUsage/Rate/Group/Paged/Detail
Retrieve all of the UsageRateGroup 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 UsageRateGroup objects in a paged fashion with all object details.
GET Usage/Rate/Group/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": "All Zone 2 Data Rates",
                "start": "2021-04-26T15:25:27.587Z",
                "end": "2021-04-26T15:25:27.587Z",
                "useForCost": true,
                "timePeriodId": 17,
                "timePeriodName": "Sample Text Data",
                "displayName": "Gold Rates",
                "currencyId": 9,
                "currencyName": "Sample Text Data",
                "isAggregated": true,
                "isPassThrough": true,
                "amountPrecision": 26,
                "roundingMethodTypeId": 27,
                "roundingMethodTypeName": "Sample Text Data",
                "created": "2021-04-26T15:25:27.587Z",
                "updated": "2021-04-26T15:25:27.587Z",
                "details": {
                    "ratePlans": [
                        {
                            "identity": 56,
                            "name": "Sample Text Data",
                            "displayName": "Sample Text Data",
                            "start": "2021-04-26T15:25:27.587Z"
                        }
                    ],
                    "rateGroupFilters": [
                        {
                            "identity": 60,
                            "usageRateGroupId": 8,
                            "usageRateGroupName": "Sample Text Data",
                            "field": "Sample Text Data",
                            "value": "Sample Text Data",
                            "operatorTypeId": 64,
                            "operatorTypeName": "Sample Text Data",
                            "sortOrder": 49
                        }
                    ],
                    "rates": [
                        {
                            "identity": 34,
                            "usageRateGroupId": 74,
                            "usageRateGroupName": "Sample Text Data",
                            "usageClassId": 64,
                            "usageClassName": "Sample Text Data",
                            "amount": 10.02,
                            "geoTreeLocationId": 88,
                            "geoTreeLocationName": "Sample Text Data",
                            "additional": true,
                            "retired": true,
                            "usageRoundingId": 8,
                            "usageRoundingName": "Sample Text Data",
                            "displayName": "Sample Text Data",
                            "geoTreeLocationGroupId": 12,
                            "geoTreeLocationGroupName": "Sample Text Data",
                            "minimumCharge": 9.49,
                            "usageUnitId": 2,
                            "usageUnitName": "Sample Text Data",
                            "usageRateCalculationTypeId": 23,
                            "usageRateCalculationTypeName": "Sample Text Data",
                            "created": "2021-04-26T15:25:27.587Z",
                            "updated": "2021-04-26T15:25:27.587Z",
                            "usageBaseUnitId": 23,
                            "usageBaseUnitName": "Sample Text Data",
                            "isAggregated": true,
                            "details": {
                                "usageRateTierConfiguration": {
                                    "identity": 89,
                                    "usageRateId": 24,
                                    "pricePlanTierTypeId": 85,
                                    "pricePlanTierTypeName": "Sample Text Data",
                                    "countingRuleId": 99,
                                    "countingRuleName": "Sample Text Data"
                                }
                            }
                        }
                    ]
                }
            }
        ]
    }
}
GETUsage/Rate/Group/{id}
Retrieve an instance of the UsageRateGroup object by its ID.
{id}Unique identifier for the UsageRateGroup object.
Retrieve an instance of the UsageRateGroup object by its ID.
GET Usage/Rate/Group/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 14,
        "ownerName": "Sample Text Data",
        "name": "All Zone 2 Data Rates",
        "start": "2021-04-26T15:25:27.587Z",
        "end": "2021-04-26T15:25:27.587Z",
        "useForCost": true,
        "timePeriodId": 18,
        "timePeriodName": "Sample Text Data",
        "displayName": "Gold Rates",
        "currencyId": 23,
        "currencyName": "Sample Text Data",
        "isAggregated": true,
        "isPassThrough": true,
        "amountPrecision": 14,
        "roundingMethodTypeId": 1,
        "roundingMethodTypeName": "Sample Text Data",
        "created": "2021-04-26T15:25:27.587Z",
        "updated": "2021-04-26T15:25:27.587Z"
    }
}
GETUsage/Rate/Group/{id}/Detail
Retrieve deep detail of the UsageRateGroup 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 UsageRateGroup object.
Retrieve deep detail of the UsageRateGroup object by its ID.
GET Usage/Rate/Group/{id}/Detail
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 5,
        "ownerName": "Sample Text Data",
        "name": "All Zone 2 Data Rates",
        "start": "2021-04-26T15:25:27.587Z",
        "end": "2021-04-26T15:25:27.587Z",
        "useForCost": true,
        "timePeriodId": 14,
        "timePeriodName": "Sample Text Data",
        "displayName": "Gold Rates",
        "currencyId": 14,
        "currencyName": "Sample Text Data",
        "isAggregated": true,
        "isPassThrough": true,
        "amountPrecision": 27,
        "roundingMethodTypeId": 21,
        "roundingMethodTypeName": "Sample Text Data",
        "created": "2021-04-26T15:25:27.587Z",
        "updated": "2021-04-26T15:25:27.587Z",
        "details": {
            "ratePlans": [
                {
                    "identity": 56,
                    "name": "Sample Text Data",
                    "displayName": "Sample Text Data",
                    "start": "2021-04-26T15:25:27.587Z"
                }
            ],
            "rateGroupFilters": [
                {
                    "identity": 60,
                    "usageRateGroupId": 8,
                    "usageRateGroupName": "Sample Text Data",
                    "field": "Sample Text Data",
                    "value": "Sample Text Data",
                    "operatorTypeId": 64,
                    "operatorTypeName": "Sample Text Data",
                    "sortOrder": 49
                }
            ],
            "rates": [
                {
                    "identity": 34,
                    "usageRateGroupId": 74,
                    "usageRateGroupName": "Sample Text Data",
                    "usageClassId": 64,
                    "usageClassName": "Sample Text Data",
                    "amount": 10.02,
                    "geoTreeLocationId": 88,
                    "geoTreeLocationName": "Sample Text Data",
                    "additional": true,
                    "retired": true,
                    "usageRoundingId": 8,
                    "usageRoundingName": "Sample Text Data",
                    "displayName": "Sample Text Data",
                    "geoTreeLocationGroupId": 12,
                    "geoTreeLocationGroupName": "Sample Text Data",
                    "minimumCharge": 9.49,
                    "usageUnitId": 2,
                    "usageUnitName": "Sample Text Data",
                    "usageRateCalculationTypeId": 23,
                    "usageRateCalculationTypeName": "Sample Text Data",
                    "created": "2021-04-26T15:25:27.587Z",
                    "updated": "2021-04-26T15:25:27.587Z",
                    "usageBaseUnitId": 23,
                    "usageBaseUnitName": "Sample Text Data",
                    "isAggregated": true,
                    "details": {
                        "usageRateTierConfiguration": {
                            "identity": 89,
                            "usageRateId": 24,
                            "pricePlanTierTypeId": 85,
                            "pricePlanTierTypeName": "Sample Text Data",
                            "countingRuleId": 99,
                            "countingRuleName": "Sample Text Data"
                        }
                    }
                }
            ]
        }
    }
}
PATCHUsage/Rate/Group/{id}
Update or Add the UsageRateGroup 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 UsageRateGroup object.
Update or Add the UsageRateGroup object and optionally make changes to any child objects.
PATCH Usage/Rate/Group/{id}

{
    "details": {},
    "usageRateGroups": {
        "items": [
            {
                "patchType": "create",
                "patchClientId": 1,
                "name": "All Zone 2 Data Rates",
                "start": "2021-04-26T15:25:27.587Z",
                "useForCost": true,
                "timePeriodId": 3,
                "displayName": "Gold Rates",
                "currencyId": 3,
                "isAggregated": true,
                "isPassThrough": true,
                "amountPrecision": 5,
                "roundingMethodTypeId": 3,
                "updated": "2021-04-26T15:25:27.587Z"
            }
        ]
    }
}
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": "usageRateGroup",
                "instance": {
                    "identity": 1,
                    "ownerId": 7,
                    "ownerName": "Sample Text Data",
                    "name": "All Zone 2 Data Rates",
                    "start": "2021-04-26T15:25:27.587Z",
                    "end": "2021-04-26T15:25:27.587Z",
                    "useForCost": true,
                    "timePeriodId": 27,
                    "timePeriodName": "Sample Text Data",
                    "displayName": "Gold Rates",
                    "currencyId": 15,
                    "currencyName": "Sample Text Data",
                    "isAggregated": true,
                    "isPassThrough": true,
                    "amountPrecision": 7,
                    "roundingMethodTypeId": 22,
                    "roundingMethodTypeName": "Sample Text Data",
                    "created": "2021-04-26T15:25:27.587Z",
                    "updated": "2021-04-26T15:25:27.587Z"
                }
            }
        ]
    }
}
POSTUsage/Rate/Group/
Create a new instance of the UsageRateGroup object.
Create a new instance of the UsageRateGroup object.
POST Usage/Rate/Group/

{
    "name": "All Zone 2 Data Rates",
    "start": "2021-04-26T15:25:27.587Z",
    "useForCost": true,
    "timePeriodId": 22,
    "displayName": "Gold Rates",
    "currencyId": 14,
    "isAggregated": true,
    "isPassThrough": true,
    "amountPrecision": 17,
    "roundingMethodTypeId": 4,
    "updated": "2021-04-26T15:25:27.587Z"
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 15,
                "ownerName": "Sample Text Data",
                "name": "All Zone 2 Data Rates",
                "start": "2021-04-26T15:25:27.587Z",
                "end": "2021-04-26T15:25:27.587Z",
                "useForCost": true,
                "timePeriodId": 0,
                "timePeriodName": "Sample Text Data",
                "displayName": "Gold Rates",
                "currencyId": 22,
                "currencyName": "Sample Text Data",
                "isAggregated": true,
                "isPassThrough": true,
                "amountPrecision": 16,
                "roundingMethodTypeId": 17,
                "roundingMethodTypeName": "Sample Text Data",
                "created": "2021-04-26T15:25:27.587Z",
                "updated": "2021-04-26T15:25:27.587Z"
            }
        ]
    }
}
PUTUsage/Rate/Group/{id}
Update an existing instance of the UsageRateGroup object.
Update an existing instance of the UsageRateGroup object.
PUT Usage/Rate/Group/{id}

{
    "identity": 1,
    "name": "All Zone 2 Data Rates",
    "start": "2021-04-26T15:25:27.587Z",
    "useForCost": true,
    "timePeriodId": 16,
    "displayName": "Gold Rates",
    "currencyId": 2,
    "isAggregated": true,
    "isPassThrough": true,
    "amountPrecision": 4,
    "roundingMethodTypeId": 21,
    "updated": "2021-04-26T15:25:27.587Z"
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 6,
                "ownerName": "Sample Text Data",
                "name": "All Zone 2 Data Rates",
                "start": "2021-04-26T15:25:27.587Z",
                "end": "2021-04-26T15:25:27.587Z",
                "useForCost": true,
                "timePeriodId": 3,
                "timePeriodName": "Sample Text Data",
                "displayName": "Gold Rates",
                "currencyId": 16,
                "currencyName": "Sample Text Data",
                "isAggregated": true,
                "isPassThrough": true,
                "amountPrecision": 14,
                "roundingMethodTypeId": 26,
                "roundingMethodTypeName": "Sample Text Data",
                "created": "2021-04-26T15:25:27.587Z",
                "updated": "2021-04-26T15:25:27.587Z"
            }
        ]
    }
}