Bu metod ile, daha önce almış olduğunuz 'trackingId' bilgilerini alabilirsiniz.
V2 ile pagenation yapısı ve sıralama özelliği geliştirilmiştir. Haziran ayı itibari ile sadece V2 yapısının kullanılması zorunludur. V1 sonlandırılacaktır.
Method | Endpoint | Header Variables |
---|---|---|
GET | /product/api/products/trackingId-history | [{"key":"Authorization","value":"Bearer Token"},{"key":"Accept","value":"application/json"}] |
İstek Limiti: "500 istek/1 saniye" her bir IP başına.
Örnek İstek
GET /product/api/products/trackingId-history?version=2&page=0&size=100&sort=createdAt,desc HTTP/1.1
Host: https://mpop-sit.Uztrendbol.com
Örnek Cevap(Response Body)
{
"success": true,
"code": 0,
"version": 2,
"message": null,
"totalElements": 107623,
"totalPages": 21525,
"number": 0,
"numberOfElements": 5,
"first": true,
"last": false,
"data": [
{
"createdDate": "2020-05-07T06:39:24.404",
"trackingId": "bc5285ff-06cd-4596-90fe-8d348b646cfb"
},
{
"createdDate": "2020-05-07T06:23:11.843",
"trackingId": "bf1edf99-510c-4e81-8d29-96d8c7a7bb95"
},
{
"createdDate": "2020-05-07T06:07:19.113",
"trackingId": "873bd3d3-9819-46f1-8414-18f4abdbdfba"
},
{
"createdDate": "2020-05-07T05:56:35.564",
"trackingId": "0a46b24c-b1d0-4d85-96cc-e1e5a8e7f907"
},
{
"createdDate": "2020-05-07T05:52:26.690",
"trackingId": "64a65b84-a8d7-4a48-992d-fdbbd3817682"
}
]
}
Cevap Data Tipi Tablosu
Özellik Adı | Data Tipi | Açıklama |
---|---|---|
success | boolean | true: Request completed with success. false: Error. |
code | integer | Success code is 0 (zero). The codes that are different from zero are error codes according to error case. |
version | integer | Version information of the response data. |
message | string | Error messages. |
data | [object] | Response data set. |
createdDate | date | Creation date of the regarding trackingId. |
trackingId | string | Tracking Id of the import process. |