TAG LINE
TAG LINE
SMALL TITLE

Usage / Rounding

(API Version v5)


Defines a Rounding Rule to be used with a Usage Rate.


What can you do with UsageRounding?


Properties

Property Details
identity
READ-ONLY
"identity": 27
Type: Number
This is the unique numeric identifier for the UsageRounding
name
"name": "Round Up 6/60"
Type: String
The user defined name for the Rounding Rule
description
"description": "Round up in increments of 60"
Type: String
The user description for the Rounding Rule.
minimum
"minimum": 0
Type: Number
The floor in which to round up to.
increment
"increment": 27
Type: Number
The increment of rounding.
sortOrder
READ-ONLY
"sortOrder": 8
Type: Number
Unused
usageUnitId
"usageUnitId": 24
Type: Number
Unique identifier for the associated UsageUnit object.
usageUnitName
"usageUnitName": "Sample Name"
Type: String
The name of the object associated with the usageUnitId property.
isActive
"isActive": true
Type: Boolean
Whether or not this Rule can be assigned in the system.
ownerId
READ-ONLY
"ownerId": 4
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.


End Points

DELETEUsage/Rounding/{id}
Delete an instance of the UsageRounding 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 UsageRounding object.
Delete an instance of the UsageRounding object.
DELETE Usage/Rounding/{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": "usageRounding"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
GETUsage/Rounding/
Retrieve all of the UsageRounding objects.
Retrieve all of the UsageRounding objects.
GET Usage/Rounding/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "name": "Round Up 6/60",
            "description": "Round up in increments of 60",
            "minimum": 6,
            "increment": 13,
            "sortOrder": 7,
            "usageUnitId": 7,
            "usageUnitName": "Sample Text Data",
            "isActive": true,
            "ownerId": 7,
            "ownerName": "Sample Text Data"
        }
    ]
}
GETUsage/Rounding/Paged
Retrieve all of the UsageRounding 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 UsageRounding objects in a paged fashion.
GET Usage/Rounding/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": "Round Up 6/60",
                "description": "Round up in increments of 60",
                "minimum": 1,
                "increment": 23,
                "sortOrder": 26,
                "usageUnitId": 23,
                "usageUnitName": "Sample Text Data",
                "isActive": true,
                "ownerId": 10,
                "ownerName": "Sample Text Data"
            }
        ]
    }
}
GETUsage/Rounding/{id}
Retrieve an instance of the UsageRounding object by its ID.
{id}Unique identifier for the UsageRounding object.
Retrieve an instance of the UsageRounding object by its ID.
GET Usage/Rounding/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "name": "Round Up 6/60",
        "description": "Round up in increments of 60",
        "minimum": 24,
        "increment": 23,
        "sortOrder": 25,
        "usageUnitId": 26,
        "usageUnitName": "Sample Text Data",
        "isActive": true,
        "ownerId": 8,
        "ownerName": "Sample Text Data"
    }
}
POSTUsage/Rounding/
Create a new instance of the UsageRounding object.
Create a new instance of the UsageRounding object.
POST Usage/Rounding/

{
    "name": "Round Up 6/60",
    "description": "Round up in increments of 60",
    "minimum": 14,
    "increment": 24,
    "usageUnitId": 27,
    "isActive": true
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "name": "Round Up 6/60",
                "description": "Round up in increments of 60",
                "minimum": 18,
                "increment": 18,
                "sortOrder": 11,
                "usageUnitId": 21,
                "usageUnitName": "Sample Text Data",
                "isActive": true,
                "ownerId": 26,
                "ownerName": "Sample Text Data"
            }
        ]
    }
}
PUTUsage/Rounding/{id}
Update an existing instance of the UsageRounding object.
Update an existing instance of the UsageRounding object.
PUT Usage/Rounding/{id}

{
    "identity": 1,
    "name": "Round Up 6/60",
    "description": "Round up in increments of 60",
    "minimum": 6,
    "increment": 3,
    "usageUnitId": 4,
    "isActive": true
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "name": "Round Up 6/60",
                "description": "Round up in increments of 60",
                "minimum": 10,
                "increment": 27,
                "sortOrder": 5,
                "usageUnitId": 19,
                "usageUnitName": "Sample Text Data",
                "isActive": true,
                "ownerId": 21,
                "ownerName": "Sample Text Data"
            }
        ]
    }
}