Users endpoint
Return users created inside your company.
/api/v1/users/
Get
You need to provide Authorization header with Bearer token:
curl -H 'Accept: application/json'\
-H "Authorization: Bearer <API_TOKEN>"\
https://productroad.com/api/v1/users/
Example response
[
{
"id": "<COMPANY USER ID>",
"email": "<COMPANY USER EMAIL>",
"name": "<COMPANY USER NAME>",
"alias": "<COMPANY USER ALIAS>",
"registered": "<CREATOR REGISTRATION DATETIME ISO FORMATTED>",
"is_admin": <IS COMPANY ADMIN BOOL>,
"is_team": <IS COMPANY TEAM BOOL>
},
...
]