TAG LINE
TAG LINE
SMALL TITLE
accountId | "accountId": 3 Type: Number |
accountName | "accountName": "Hello World" Type: String |
usageInvoicerAccountId | "usageInvoicerAccountId": 23 Type: Number |
usageInvoicerAccountName | "usageInvoicerAccountName": "Hello World" Type: String |
earliestStartDate | "earliestStartDate": "Hello World" Type: String |
rerateTypeId | "rerateTypeId": 18 Type: Number |
earliestRerateReasonTypeId | "earliestRerateReasonTypeId": 18 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": 13, "accountName": "Sample Text Data", "usageInvoicerAccountId": 24, "usageInvoicerAccountName": "Sample Text Data", "earliestStartDate": "Sample Text Data", "rerateTypeId": 27, "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": 14, "accountName": "Sample Text Data", "usageInvoicerAccountId": 7, "usageInvoicerAccountName": "Sample Text Data", "earliestStartDate": "Sample Text Data", "rerateTypeId": 17, "earliestRerateReasonTypeId": 19 } ] } } |