Endpoints:
Get Accessories
GET /accessories
will return a paginated list of all accessories in the shop
Optional URL parameters:
page
the value that was returned in the next_page
property from a previous request
page_size
the number of results per page
Example JSON Response
{
"total_records":52,
"next_page":2116349,
"data":[
{
"id":1781491,
"parent_id":400935249,
"type":"collection",
"accessory_id":4812973015074,
"sort_order":0
},
{
"id":367058,
"parent_id":33240154146,
"type":"collection",
"accessory_id":541702684706,
"sort_order":0
},
{...},
{...}
]
}
Delete Accessory
DELETE /accessories/1
will delete the accessory from your shop with the id
of 1
No parameters required. Returns200 No Content
if successful.