Skip to content

Users

GET /users

Shows list of users. Usage: listing users for pinpad or in Backoffice.

Sample curl

curl -X GET \
  'https://app.inventorum.com/api/users/' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {{oauth_token}}' \

Sample success response

Status 200 OK
[
    {
        "id": 25820,
        "username": "test_user@inventorum.com",
        "email": "test_user@inventorum.com",
        "first_name": "test",
        "last_name": "",
        "phone_numbers": [
            {
                "country_code": "49",
                "id": 74960,
                "type": "normal",
                "national_number": "1234567890"
            }
        ],
        "image": null,
        "groups": [
            {
                "id": 59154,
                "name": "owner",
                "key_name": "owner"
            }
        ]
    }
]