Groups
Last updated
Last updated
GET /api_user/api/v1/groups HTTP/1.1
Host: papelship.com
x-api-key: YOUR_API_KEY
x-store-hash: YOUR_API_KEY
Accept: */*
{
"success": true,
"groups": [
{
"id": 25,
"name": "Featured Products",
"slug": "featured-products",
"image_url": "https://example.com/image.png",
"unlisted": 0,
"product_count": 3,
"products": [
{
"id": 1,
"name": "text",
"slug": "text"
}
]
}
]
}POST /api_user/api/v1/groups HTTP/1.1
Host: papelship.com
x-api-key: YOUR_API_KEY
x-store-hash: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"name": "text"
}{
"success": true,
"group": {
"id": 25,
"name": "Featured Products",
"slug": "featured-products",
"image_url": "https://example.com/image.png",
"unlisted": 0,
"product_count": 3,
"products": [
{
"id": 1,
"name": "text",
"slug": "text"
}
]
}
}GET /api_user/api/v1/groups/{id} HTTP/1.1
Host: papelship.com
x-api-key: YOUR_API_KEY
x-store-hash: YOUR_API_KEY
Accept: */*
{
"success": true,
"group": {
"id": 25,
"name": "Featured Products",
"slug": "featured-products",
"image_url": "https://example.com/image.png",
"unlisted": 0,
"product_count": 3,
"products": [
{
"id": 1,
"name": "text",
"slug": "text"
}
]
}
}DELETE /api_user/api/v1/groups/{id} HTTP/1.1
Host: papelship.com
x-api-key: YOUR_API_KEY
x-store-hash: YOUR_API_KEY
Accept: */*
{
"success": true
}