GET List SKU Master Data
Last Updated by 24/10/2022
Shipper API gives interface access to our clients for retrieving or pulling SKU Master Data API from Shipper Warehouse Management System
GET Create Master Data
Method | Endpoint |
---|---|
GET | /v3/fulfillment/skus |
Query Parameter
Field | Data Type | Description | Mandatory Flag |
---|---|---|---|
created_start | yyyy-MM-dd | Item Master Registration Start Date | Optional |
created_end | yyyy-MM-dd | Item Master Registration End Date | Optional |
updated_start | yyyy-MM-dd | Item Master Registration Updated Start Date | Optional |
updated_end | yyyy-MM-dd | Item Master Registration Updated End Date | Optional |
active_flag | Boolean | Activeness Flag | Optional |
image_address | String | Image address | Optional |
Page | Integer | Page No | Optional |
Limit | Integer | Limit Items per Page | Optional |
Sample Query Parameter
/v3/fulfillment/skus?created_start=2021-04-20&created_end=2021-04-20&updated_start=2021-04-20&updated_end=2021-04-20&active_flag=true&page=1&limit=10
created_start="2021-04-20"
created_end="2021-04-20"
updated_start="2021-04-20"
updated_end="2021-04-20"
page=1
limit=1
Sample Body Response
{
"metadata": {
"path": "/v3/fulfillment/skus?active_flag=true&page=1&limit=1",
"http_status_code": 200,
"http_status": "OK",
"timestamp": 1637216090
},
"data": {
"skus": [
{
"sku": "11004002",
"sku_descr_1": "Mask",
"sku_descr_2": "Mask",
"active_flag": true,
"easy_code": "",
"item_code": "",
"sku_barcode": "",
"supplier_id": "ba64d5e3-1736-4168-af50-71f5db6fc8d7",
"image_address": "https://shipper.id/image.png"
}
]
}
{
"metadata": {
"path": "/v3/fulfillment/skus?created_start=2021-04-20&created_end=2021-04-20&updated_start=2021-04-20&updated_end=2021-04-20&active_flag=true&page=1&limit=10",
"http_status_code": 400,
"http_status": "Bad Request",
"errors": [
{
"code": 810,
"message": "Invalid Input. Please Validate Your Input."
}
],
"timestamp": 1637213732
}
}
{
"metadata": {
"path": "/v3/fulfillment/skus?created_start=2021-04-20&created_end=2021-04-20&updated_start=2021-04-20&updated_end=2021-04-20&active_flag=true&page=1&limit=10",
"http_status_code": 401,
"http_status": "Unauthorized",
"errors": [
{
"code": 10001,
"message": "Unauthorized Access. You are not authorized to access this resource."
}
],
"timestamp": 1637213866
}
}
{
"metadata": {
"path": "/v3/fulfillment/skus?created_start=2021-04-20&created_end=2021-04-20&updated_start=2021-04-20&updated_end=2021-04-20&active_flag=true&page=1&limit=10",
"http_status_code": 404,
"http_status": "Not Found",
"errors": [
{
"code": 10004,
"message": "Record Does Not Exist. Please Validate Your Input Or Contact Administrator."
}
],
"timestamp": 1637215970
}
}
{
"metadata": {
"path": "/v3/fulfillment/skus?created_start=2021-04-20&created_end=2021-04-20&updated_start=2021-04-20&updated_end=2021-04-20&active_flag=true&page=1&limit=10",
"http_status_code": 500,
"http_status": "Internal Server Error",
"errors": [
{
"code": 803,
"message": "Internal Server Error. Please Call Administrator."
}
],
"timestamp": 1637213866
}
}
Updated about 2 years ago
What’s Next