Users Controller
Users Controller

Users Controller

The User controller provides a single method that a customer can use to retrieve a list of users (associates), supervisors, or both.

Retrieve Users

The
GET /api/task-tracker-external/users
method can retrieve a list of users, a list of supervisors, or a list of both users and supervisors.
curl -X 'GET' \ '
<task_tracker_host>
/api/task-tracker-external/users?storeName=test&isAssociate%20=true' \ -H 'accept: */*' \ -H 'API-Key:
<external_api_key>
' \ -H 'customerId:
<customer_id>
'
Retrieve Users Parameters
Parameter
Data Type
Description
storeName
String
The name of the store.
isAssociate
Boolean
This parameter has the following values:
  • true - returns a list of users
  • false- returns a list of supervisors
  • no value - retrieves a list of both users and supervisors.