TAG LINE
TAG LINE
SMALL TITLE
accountId | "accountId": 4 Type: Number |
accountName | "accountName": "Hello World" Type: String |
usageInvoicerAccountId | "usageInvoicerAccountId": 17 Type: Number |
usageInvoicerAccountName | "usageInvoicerAccountName": "Hello World" Type: String |
earliestStartDate | "earliestStartDate": "Hello World" Type: String |
rerateTypeId | "rerateTypeId": 6 Type: Number |
earliestRerateReasonTypeId | "earliestRerateReasonTypeId": 1 Type: Number |
GET | Rerate/Pending/ |
Retrieve all of the ViewReratePending objects. | |
Retrieve all of the ViewReratePending objects. GET Rerate/Pending/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "accountId": 21, "accountName": "Sample Text Data", "usageInvoicerAccountId": 12, "usageInvoicerAccountName": "Sample Text Data", "earliestStartDate": "Sample Text Data", "rerateTypeId": 4, "earliestRerateReasonTypeId": 13 } ] } |
GET | Rerate/Pending/Paged |
Retrieve all of the ViewReratePending 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 ViewReratePending objects in a paged fashion. GET Rerate/Pending/Paged HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "pagination": { "pageNumber": 1, "pageSize": 20, "excludeTotalCount": false }, "pagedResults": { "totalCount": 1, "items": [ { "accountId": 20, "accountName": "Sample Text Data", "usageInvoicerAccountId": 4, "usageInvoicerAccountName": "Sample Text Data", "earliestStartDate": "Sample Text Data", "rerateTypeId": 13, "earliestRerateReasonTypeId": 14 } ] } } |