TAG LINE
TAG LINE
SMALL TITLE
identity READ-ONLY | "identity": 24 Type: Number This is the unique numeric identifier for the AccountServiceDiscountTracking |
accountServiceId | "accountServiceId": "Hello World" Type: String Unique identifier for the associated AccountService object. |
accountServiceName | "accountServiceName": "Sample Name" Type: String The name of the object associated with the accountServiceId property. |
accountPackageServiceDiscountId | "accountPackageServiceDiscountId": 1 Type: Number Unique identifier for the associated AccountPackageServiceDiscount object. |
accountPackageServiceDiscountName | "accountPackageServiceDiscountName": "Sample Name" Type: String The name of the object associated with the accountPackageServiceDiscountId property. |
frequency | "frequency": 14 Type: Number |
frequencyTypeId | "frequencyTypeId": 12 Type: Number Unique identifier for the associated FrequencyType object. |
frequencyTypeName | "frequencyTypeName": "Sample Name" Type: String The name of the object associated with the frequencyTypeId property. |
start | "start": "2021-04-26T15:25:27.587Z" Type: Date Date and time values are specified in the ISO 8601 format. |
lastProcessed | "lastProcessed": "2021-04-26T15:25:27.587Z" Type: Date Date and time values are specified in the ISO 8601 format. |
finalized | "finalized": "2021-04-26T15:25:27.587Z" Type: Date Date and time values are specified in the ISO 8601 format. |
GET | Account/Service/Discount/Tracking/ |
Retrieve all of the AccountServiceDiscountTracking objects. | |
Retrieve all of the AccountServiceDiscountTracking objects. GET Account/Service/Discount/Tracking/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "accountServiceId": "Sample Text Data", "accountServiceName": "Sample Text Data", "accountPackageServiceDiscountId": 13, "accountPackageServiceDiscountName": "Sample Text Data", "frequency": 3, "frequencyTypeId": 27, "frequencyTypeName": "Sample Text Data", "start": "2021-04-26T15:25:27.587Z", "lastProcessed": "2021-04-26T15:25:27.587Z", "finalized": "2021-04-26T15:25:27.587Z" } ] } |
GET | Account/Service/Discount/Tracking/Paged |
Retrieve all of the AccountServiceDiscountTracking 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 AccountServiceDiscountTracking objects in a paged fashion. GET Account/Service/Discount/Tracking/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, "accountServiceId": "Sample Text Data", "accountServiceName": "Sample Text Data", "accountPackageServiceDiscountId": 23, "accountPackageServiceDiscountName": "Sample Text Data", "frequency": 12, "frequencyTypeId": 17, "frequencyTypeName": "Sample Text Data", "start": "2021-04-26T15:25:27.587Z", "lastProcessed": "2021-04-26T15:25:27.587Z", "finalized": "2021-04-26T15:25:27.587Z" } ] } } |
GET | Account/Service/Discount/Tracking/{id} |
Retrieve an instance of the AccountServiceDiscountTracking object by its ID. | |
{id} | Unique identifier for the AccountServiceDiscountTracking object. |
Retrieve an instance of the AccountServiceDiscountTracking object by its ID. GET Account/Service/Discount/Tracking/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "accountServiceId": "Sample Text Data", "accountServiceName": "Sample Text Data", "accountPackageServiceDiscountId": 14, "accountPackageServiceDiscountName": "Sample Text Data", "frequency": 23, "frequencyTypeId": 1, "frequencyTypeName": "Sample Text Data", "start": "2021-04-26T15:25:27.587Z", "lastProcessed": "2021-04-26T15:25:27.587Z", "finalized": "2021-04-26T15:25:27.587Z" } } |