TAG LINE
TAG LINE
SMALL TITLE
Details the usage rating exceptions.
identity READ-ONLY | "identity": 13 Type: Number This is the unique numeric identifier for the DailyUsageRatedException |
ownerId READ-ONLY | "ownerId": 7 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": 17 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": 10 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": 16 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": 16, "ownerName": "Sample Text Data", "date": "Sample Text Data", "accountId": 14, "accountName": "Sample Text Data", "usageRatedExceptionTypeId": 0, "usageRatedExceptionTypeName": "Sample Text Data", "totalCount": 16 } ] } |
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": 25, "ownerName": "Sample Text Data", "date": "Sample Text Data", "accountId": 10, "accountName": "Sample Text Data", "usageRatedExceptionTypeId": 24, "usageRatedExceptionTypeName": "Sample Text Data", "totalCount": 21 } ] } } |