Using the endpoint alone with no optional parameters will retrieve users assigned only to the Polarix.io customer in which the request is made.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location -g --request GET 'https://app.polarix.io/api/1.0/users' \
--header 'x-api-key: bfa770cb2281e260557d5a51462d6194' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'
Responses
application/json [
{
"name": "John Doe",
"email": "john.doe@gmail.com",
"avatar": "https://lhg-digital.s3.us-east-1.amazonaws.com/polarixv2/users/JohnDoe.jpeg"
},
{
"name": "Jane Doe",
"email": "jane.doe@gmail.com",
"avatar": "https://lhg-digital.s3.us-east-1.amazonaws.com/polarixv2/users/JaneDoe.jpeg"
}
]
Modified at 2026-04-02 11:41:23