cURL
curl --request GET \ --url https://api.sandbox.bitwage.com/api/company/workers \ --header 'Authorization: Basic <encoded-value>'
{ "data": [ { "user_id": "<string>", "email": "jsmith@example.com", "first_name": "<string>", "last_name": "<string>", "onboarding_complete": true, "has_distributions": true } ], "meta": { "page": 123, "total": 123, "pages": 123, "has_prev": true, "has_next": true, "prev_num": 123, "next_num": 123, "per_page": 123 } }
Get a paginated list of company workers.
API key authentication. Include your access token as: Authorization: Basic <ACCESS_TOKEN>
Authorization: Basic <ACCESS_TOKEN>
Filter by worker user ID.
Filter by worker email.
Page number.
x >= 1
Number of items per page.
Paginated worker list.
Show child attributes