TAG LINE
TAG LINE
SMALL TITLE
identity READ-ONLY | "identity": 25 Type: Number This is the unique numeric identifier for the PriceChangeTracking |
priceChangeId | "priceChangeId": 5 Type: Number Unique identifier for the associated PriceChange object. |
priceChangeName | "priceChangeName": "Sample Name" Type: String The name of the object associated with the priceChangeId property. |
priceChangeStatusTypeId | "priceChangeStatusTypeId": 16 Type: Number Unique identifier for the associated PriceChangeStatusType object. |
priceChangeStatusTypeName | "priceChangeStatusTypeName": "Sample Name" Type: String The name of the object associated with the priceChangeStatusTypeId property. |
errorMessage | "errorMessage": "Hello World" Type: String |
started | "started": "2021-04-26T15:25:27.587Z" Type: Date Date and time values are specified in the ISO 8601 format. |
completed | "completed": "2021-04-26T15:25:27.587Z" Type: Date Date and time values are specified in the ISO 8601 format. |
createdByUserId | "createdByUserId": 20 Type: Number Unique identifier for the associated User object. |
createdByUserName | "createdByUserName": "Sample Name" Type: String The name of the object associated with the createdByUserId property. |
created READ-ONLY | "created": "2021-04-26T15:25:27.587Z" Type: Date This is a system generated date when the record was created. Date and time values are specified in the ISO 8601 format. |
| GET | PriceChangeTracking/ |
| Retrieve all of the PriceChangeTracking objects. | |
Retrieve all of the PriceChangeTracking objects. GET PriceChangeTracking/ HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"totalCount": 1,
"items": [
{
"identity": 1,
"priceChangeId": 9,
"priceChangeName": "Sample Text Data",
"priceChangeStatusTypeId": 13,
"priceChangeStatusTypeName": "Sample Text Data",
"errorMessage": "Sample Text Data",
"started": "2021-04-26T15:25:27.587Z",
"completed": "2021-04-26T15:25:27.587Z",
"createdByUserId": 0,
"createdByUserName": "Sample Text Data",
"created": "2021-04-26T15:25:27.587Z"
}
]
} | |
| GET | PriceChangeTracking/Paged |
| Retrieve all of the PriceChangeTracking 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 PriceChangeTracking objects in a paged fashion. GET PriceChangeTracking/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,
"priceChangeId": 17,
"priceChangeName": "Sample Text Data",
"priceChangeStatusTypeId": 10,
"priceChangeStatusTypeName": "Sample Text Data",
"errorMessage": "Sample Text Data",
"started": "2021-04-26T15:25:27.587Z",
"completed": "2021-04-26T15:25:27.587Z",
"createdByUserId": 1,
"createdByUserName": "Sample Text Data",
"created": "2021-04-26T15:25:27.587Z"
}
]
}
} | |
| GET | PriceChangeTracking/{id} |
| Retrieve an instance of the PriceChangeTracking object by its ID. | |
| {id} | Unique identifier for the PriceChangeTracking object. |
Retrieve an instance of the PriceChangeTracking object by its ID. GET PriceChangeTracking/{id}HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"instance": {
"identity": 1,
"priceChangeId": 22,
"priceChangeName": "Sample Text Data",
"priceChangeStatusTypeId": 25,
"priceChangeStatusTypeName": "Sample Text Data",
"errorMessage": "Sample Text Data",
"started": "2021-04-26T15:25:27.587Z",
"completed": "2021-04-26T15:25:27.587Z",
"createdByUserId": 7,
"createdByUserName": "Sample Text Data",
"created": "2021-04-26T15:25:27.587Z"
}
} | |