200 OK : Returns an array of user objects, each containing detailed information such as user name, email, role, and other relevant fields.curl --location --request GET 'https://api.recruspace.com/api/v1/companies/users/' \
--header 'Authorization: Bearer <token>'[
{
"id": 0,
"user": {
"id": 0,
"email": "user@example.com",
"first_name": "string",
"last_name": "string",
"profile_img": {
"id": 0,
"path": "string",
"name": "string",
"type": "string",
"file_size": -2147483648,
"base": "string",
"presigned_url": "string",
"uploaded_at": "2019-08-24T14:15:22Z"
}
},
"permission": "owner",
"role": "hiring_manager",
"invite_status": "pending",
"invite_code": "string",
"invite_email": "string",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"company": "string"
}
]