List
/v1/workers
List all workers. Workers includ
Query Parameters
afterId: optional string
The id of the worker.
beforeId: optional string
The id of the worker.
limit: optional string
a number less than or equal to 100
workEmail: optional string
Returns
count: number
an integer
hasMore: boolean
curl https://api.joinwarp.com/v1/workers \
-H "x-api-key: $WARP_API_KEY"
{
"count": 0,
"data": [
{
"id": "wrk_1234",
"businessName": null,
"displayName": "Jack Galt",
"email": "john@joinwarp.com",
"endDate": "2000-01-01",
"firstName": "Jonathan",
"isBusiness": false,
"lastName": "Galt",
"position": "Research Engineer",
"preferredName": "John",
"startDate": "2000-01-01",
"status": "onboarding",
"timeZone": "America/New_York",
"type": "employee",
"workEmail": "john@joinwarp.com"
}
],
"hasMore": true
}
Returns Examples
{
"count": 0,
"data": [
{
"id": "wrk_1234",
"businessName": null,
"displayName": "Jack Galt",
"email": "john@joinwarp.com",
"endDate": "2000-01-01",
"firstName": "Jonathan",
"isBusiness": false,
"lastName": "Galt",
"position": "Research Engineer",
"preferredName": "John",
"startDate": "2000-01-01",
"status": "onboarding",
"timeZone": "America/New_York",
"type": "employee",
"workEmail": "john@joinwarp.com"
}
],
"hasMore": true
}