GET
/
api
/
extraction
/
v1
/
slices
curl --request GET \
  --url https://api.bspk.com/api/extraction/v1/slices \
  --header 'Authorization: Bearer <token>'
[
  {
    "store_id": "Store-external_id-68",
    "store_name": "Store-77",
    "created_by_sales_associate_id": "SA_01",
    "created_by_sales_associate_name": "FirstName-113 LastName-113",
    "title": null,
    "body": null,
    "created_at": "2024-08-07T12:29:28.363Z",
    "updated_at": "2024-08-07T12:29:28.363Z",
    "item_ids": [
      "ITEM_OO1"
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

sales_associate_ids
string

Sales Associate id owned by the brand

from
string

Only show slices updated after the given time. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.

to
string

Combined with the from parameter, only show slices updated whitin the given range (from..to) time. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.

page
string

Page number of the results to fetch. Default: 1

per_page
string

Results per page (max 100). Default: 30

Response

200 - application/json

Successful response, returns array of slices

The response is of type object[].