GET
/
api
/
extraction
/
v1
/
sales_associates
curl --request GET \
  --url https://api.bspk.com/api/extraction/v1/sales_associates \
  --header 'Authorization: Bearer <token>'
[
  {
    "created_at": "2024-08-07T12:29:27.668Z",
    "updated_at": "2024-08-07T12:29:27.668Z",
    "current_store_id": "Store-external_id-65",
    "associate_id": null,
    "associate_id_2": null,
    "sales_associate_name": "FirstName-110 LastName-110",
    "username": "username-41",
    "email": "someone117@example.com",
    "mobile_phone": null,
    "job_title": "Manager",
    "imessage_enabled": false,
    "wechat_enabled": false,
    "wechat_code": null,
    "line_enabled": false,
    "adyen_enabled": false
  }
]

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 reminders 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 reminders 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 Sales Associates

The response is of type object[].