TAG LINE
TAG LINE
SMALL TITLE

Price Change Tracking

(API Version v10)


What can you do with PriceChangeTracking?


Properties

Property Details
identity
READ-ONLY
"identity": 27
Type: Number
This is the unique numeric identifier for the PriceChangeTracking
priceChangeId
"priceChangeId": 8
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": 6
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": 16
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.


End Points

GETPriceChangeTracking/
Retrieve all of the PriceChangeTracking objects.
Retrieve all of the PriceChangeTracking objects.
GET PriceChangeTracking/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "priceChangeId": 14,
            "priceChangeName": "Sample Text Data",
            "priceChangeStatusTypeId": 9,
            "priceChangeStatusTypeName": "Sample Text Data",
            "errorMessage": "Sample Text Data",
            "started": "2021-04-26T15:25:27.587Z",
            "completed": "2021-04-26T15:25:27.587Z",
            "createdByUserId": 10,
            "createdByUserName": "Sample Text Data",
            "created": "2021-04-26T15:25:27.587Z"
        }
    ]
}
GETPriceChangeTracking/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
View Sample Response
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": 1,
                "priceChangeName": "Sample Text Data",
                "priceChangeStatusTypeId": 15,
                "priceChangeStatusTypeName": "Sample Text Data",
                "errorMessage": "Sample Text Data",
                "started": "2021-04-26T15:25:27.587Z",
                "completed": "2021-04-26T15:25:27.587Z",
                "createdByUserId": 15,
                "createdByUserName": "Sample Text Data",
                "created": "2021-04-26T15:25:27.587Z"
            }
        ]
    }
}
GETPriceChangeTracking/{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}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "priceChangeId": 26,
        "priceChangeName": "Sample Text Data",
        "priceChangeStatusTypeId": 2,
        "priceChangeStatusTypeName": "Sample Text Data",
        "errorMessage": "Sample Text Data",
        "started": "2021-04-26T15:25:27.587Z",
        "completed": "2021-04-26T15:25:27.587Z",
        "createdByUserId": 27,
        "createdByUserName": "Sample Text Data",
        "created": "2021-04-26T15:25:27.587Z"
    }
}