TAG LINE
TAG LINE
SMALL TITLE
identity READ-ONLY | "identity": 16 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": 15 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": 20 Type: Number |
frequencyTypeId | "frequencyTypeId": 18 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. |
When updating an object you use the update request header with the list of properties to update. Then you need only supply the new values in the body of your request. Please note, this header can only be used with PUT or PATCH requests.
Field List:
GET | api/v3/Account/Service/Discount/Tracking/ |
Retrieve all of the AccountServiceDiscountTracking objects. | |
Retrieve all of the AccountServiceDiscountTracking objects. GET api/v3/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": 12, "accountPackageServiceDiscountName": "Sample Text Data", "frequency": 13, "frequencyTypeId": 20, "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 | api/v3/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 api/v3/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": 18, "accountPackageServiceDiscountName": "Sample Text Data", "frequency": 10, "frequencyTypeId": 6, "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 | api/v3/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 api/v3/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": 9, "accountPackageServiceDiscountName": "Sample Text Data", "frequency": 5, "frequencyTypeId": 4, "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" } } |