TAG LINE
TAG LINE
SMALL TITLE
Details the usage rating exceptions.
identity READ-ONLY | "identity": 1 Type: Number This is the unique numeric identifier for the DailyUsageRatedException |
ownerId READ-ONLY | "ownerId": 25 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": 5 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": 23 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": 4 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": 20, "ownerName": "Sample Text Data", "date": "Sample Text Data", "accountId": 2, "accountName": "Sample Text Data", "usageRatedExceptionTypeId": 22, "usageRatedExceptionTypeName": "Sample Text Data", "totalCount": 18 } ] } |
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": 17, "ownerName": "Sample Text Data", "date": "Sample Text Data", "accountId": 4, "accountName": "Sample Text Data", "usageRatedExceptionTypeId": 13, "usageRatedExceptionTypeName": "Sample Text Data", "totalCount": 27 } ] } } |