DocsAPI ReferenceAbout
DocsAPI ReferenceAbout
  1. users
  • locations
    • List locations
      GET
    • Create a location
      POST
    • Get a location
      GET
    • Update a location by UUID
      PATCH
    • Delete a location
      DELETE
  • users
    • List users
      GET
    • Create a new user
      POST
    • Get a user
      GET
    • Delete a user
      DELETE
  • groups
    • List groups
      GET
    • Create a new group
      POST
    • Get a group
      GET
    • Update a group
      PATCH
    • Delete a group
      DELETE
  • assets
    • List assets
      GET
    • Get single asset
      GET
  • products
    • List products
      GET
  1. users

List users

Production
https://api-v2.getmarvia.com
Production
https://api-v2.getmarvia.com
GET
https://api-v2.getmarvia.com
/v1/users
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-v2.getmarvia.com/v1/users' \
--header 'Authorization: '
Response Response Example
200 - Example 1
{
    "data": [
        {
            "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
            "firstName": "string",
            "lastName": "string",
            "username": "string",
            "email": "user@example.com",
            "status": "string",
            "createdAt": "2019-08-24",
            "editedAt": "2019-08-24"
        }
    ],
    "pagination": {
        "limit": 1,
        "page": 1,
        "total": 0,
        "pageCount": 0
    }
}

Request

Query Params

Header Params

Responses

🟢200OK
application/json
Users fetched successfully
Body

🟠400Bad Request
🔴500Server Error
Modified at 2025-07-25 04:54:55
Previous
Delete a location
Next
Create a new user
Built with