TAG LINE
TAG LINE
SMALL TITLE
accountId | "accountId": 15 Type: Number |
accountName | "accountName": "Hello World" Type: String |
usageInvoicerAccountId | "usageInvoicerAccountId": 11 Type: Number |
usageInvoicerAccountName | "usageInvoicerAccountName": "Hello World" Type: String |
earliestStartDate | "earliestStartDate": "Hello World" Type: String |
rerateTypeId | "rerateTypeId": 22 Type: Number |
earliestRerateReasonTypeId | "earliestRerateReasonTypeId": 8 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": 27, "accountName": "Sample Text Data", "usageInvoicerAccountId": 15, "usageInvoicerAccountName": "Sample Text Data", "earliestStartDate": "Sample Text Data", "rerateTypeId": 2, "earliestRerateReasonTypeId": 19 } ] } |
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": 7, "accountName": "Sample Text Data", "usageInvoicerAccountId": 3, "usageInvoicerAccountName": "Sample Text Data", "earliestStartDate": "Sample Text Data", "rerateTypeId": 10, "earliestRerateReasonTypeId": 10 } ] } } |