TAG LINE
TAG LINE
SMALL TITLE

Daily Usage Rated Exception

(API Version v9)


What can you do with DailyUsageRatedException?


Properties

Property Details
identity
READ-ONLY
"identity": 4
Type: Number
This is the unique numeric identifier for the DailyUsageRatedException
ownerId
READ-ONLY
"ownerId": 8
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.
date
"date": "Hello World"
Type: String
accountId
"accountId": 16
Type: Number
Unique identifier for the associated Account object.
accountName
"accountName": "Sample Name"
Type: String
The name of the object associated with the accountId property.
usageRatedExceptionTypeId
"usageRatedExceptionTypeId": 13
Type: Number
Unique identifier for the associated UsageRatedExceptionType object.
usageRatedExceptionTypeName
"usageRatedExceptionTypeName": "Sample Name"
Type: String
The name of the object associated with the usageRatedExceptionTypeId property.
totalCount
"totalCount": 15
Type: Number


End Points

GETDailyUsageRatedException/
Retrieve all of the DailyUsageRatedException objects.
Retrieve all of the DailyUsageRatedException objects.
GET DailyUsageRatedException/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "ownerId": 18,
            "ownerName": "Sample Text Data",
            "date": "Sample Text Data",
            "accountId": 17,
            "accountName": "Sample Text Data",
            "usageRatedExceptionTypeId": 14,
            "usageRatedExceptionTypeName": "Sample Text Data",
            "totalCount": 21
        }
    ]
}
GETDailyUsageRatedException/Paged
Retrieve all of the DailyUsageRatedException 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 DailyUsageRatedException objects in a paged fashion.
GET DailyUsageRatedException/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": 22,
                "ownerName": "Sample Text Data",
                "date": "Sample Text Data",
                "accountId": 15,
                "accountName": "Sample Text Data",
                "usageRatedExceptionTypeId": 21,
                "usageRatedExceptionTypeName": "Sample Text Data",
                "totalCount": 20
            }
        ]
    }
}