DocsAPI ReferenceAbout
DocsAPI ReferenceAbout
  1. users
  • Overview
  • Getting Started
  • Authentication
  • Permissions
  • API Reference
    • locations
      • List locations
      • Create a location
      • Get a location
      • Update a location by UUID
      • Delete a location
    • users
      • List users
        GET
      • Create a new user
        POST
      • Get a user
        GET
      • Delete a user
        DELETE
    • groups
      • List groups
      • Create a new group
      • Get a group
      • Update a group
      • Delete a group
    • assets
      • List assets
      • Get single asset
    • products
      • List products
  1. users

Get a user

Production
https://api-v2.getmarvia.com
Production
https://api-v2.getmarvia.com
GET
https://api-v2.getmarvia.com
/v1/users/{uuid}
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",
        "username": "string",
        "email": "user@example.com",
        "firstName": "string",
        "lastName": "string",
        "enabled": true,
        "identifier": "string",
        "code": "string",
        "title": "string",
        "countryCode": "string",
        "mobilePhone": "string",
        "companyName": "string",
        "timezone": "string",
        "website": "string",
        "status": "string",
        "language": "string",
        "role": "administrator",
        "lastLogin": "2019-08-24",
        "createdAt": "2019-08-24",
        "editedAt": "2019-08-24"
    }
}

Request

Path Params

Header Params

Responses

🟢200OK
application/json
User fetched successfully
Body

🟠404Record Not Found
🔴500Server Error
Modified at 2025-07-25 04:54:55
Previous
Create a new user
Next
Delete a user
Built with