TAG LINE
TAG LINE
SMALL TITLE
Details the usage rating exceptions.
identity READ-ONLY | "identity": 15 Type: Number This is the unique numeric identifier for the DailyUsageRatedException |
ownerId READ-ONLY | "ownerId": 22 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": 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": 21 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": 6 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": 21,
"ownerName": "Sample Text Data",
"date": "Sample Text Data",
"accountId": 7,
"accountName": "Sample Text Data",
"usageRatedExceptionTypeId": 2,
"usageRatedExceptionTypeName": "Sample Text Data",
"totalCount": 9
}
]
} | |
| 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": 26,
"ownerName": "Sample Text Data",
"date": "Sample Text Data",
"accountId": 27,
"accountName": "Sample Text Data",
"usageRatedExceptionTypeId": 2,
"usageRatedExceptionTypeName": "Sample Text Data",
"totalCount": 1
}
]
}
} | |