Users API.

See the Weblate's Web API documentation for detailed description of the API.

GET /api/users/?format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 4,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 1,
            "full_name": "Anonymous",
            "username": "anonymous"
        },
        {
            "id": 2,
            "full_name": "Yannick Warnier",
            "username": "ywarnier"
        },
        {
            "id": 3,
            "full_name": "Nicolas Ducoulombier",
            "username": "Nicolas"
        },
        {
            "id": 4,
            "full_name": "Rudy",
            "username": "rwillems"
        }
    ]
}