List Users

  • GET /api/users/ - List users.

    This endpoint retrieves a list of users that you have access to. This might include users within your organization or those who have been granted permissions to your projects.

    Request Example:

    GET [https://api.wayscloud.services/api/users/](https://api.wayscloud.services/api/users/)
    Authorization: Token <your_api_token>

    Response Example:

    {
    "next": null,
    "previous": null,
    "count": 2,
    "results": [
    {
    "uuid": "user_uuid_1",
    "username": "user1",
    "full_name": "John Doe",
    "email": "john.doe@example.com",
    //... other fields...
    },
    {
    "uuid": "user_uuid_2",
    "username": "user2",
    "full_name": "Jane Smith",
    "email": "jane.smith@example.com",
    //... other fields...
    }
    ]
    }

    Status Codes:

    • 200 OK: The list of users was successfully retrieved.
    • 401 Unauthorized: The user making the request is not authorized.