TAG LINE
TAG LINE
SMALL TITLE
Details the usage rating exceptions.
identity READ-ONLY | "identity": 26 Type: Number This is the unique numeric identifier for the DailyUsageRatedException |
ownerId READ-ONLY | "ownerId": 5 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 The date of the record. |
accountId | "accountId": 2 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": 12 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": 1 Type: Number |
| GET | DailyUsageRatedException/ |
| Retrieve all of the DailyUsageRatedException objects. | |
Retrieve all of the DailyUsageRatedException objects. GET DailyUsageRatedException/ HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"totalCount": 1,
"items": [
{
"identity": 1,
"ownerId": 14,
"ownerName": "Sample Text Data",
"date": "Sample Text Data",
"accountId": 19,
"accountName": "Sample Text Data",
"usageRatedExceptionTypeId": 5,
"usageRatedExceptionTypeName": "Sample Text Data",
"totalCount": 13
}
]
} | |
| GET | DailyUsageRatedException/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 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",
"date": "Sample Text Data",
"accountId": 10,
"accountName": "Sample Text Data",
"usageRatedExceptionTypeId": 6,
"usageRatedExceptionTypeName": "Sample Text Data",
"totalCount": 24
}
]
}
} | |