Marvia Developer Portal
DocsAPI ReferenceAbout
DocsAPI ReferenceAbout
  1. Users
  • Getting Started
  • Authentication
  • Permissions
  • Using the Marvia CDN
  • Upload Files via API
  • API Reference
    • Users
      • Get a user
        GET
      • Delete a user
        DELETE
      • Update a user
        PATCH
      • List
        GET
      • Create a new user
        POST
      • Get user locations
        GET
      • Update user locations
        PUT
      • Get user groups
        GET
      • Update user groups
        PUT
    • Products
      • List products
    • Locations
      • Update a location
      • Get a location
      • Delete a location
      • List locations
      • Create a new location
    • Groups
      • Get a group
      • Update a group
      • Delete a group
      • List groups
      • Create a new group
    • Uploads
      • Initialize multipart upload
      • Complete multipart upload
    • Assets
      • List assets
      • Create a new asset
      • Get asset by UUID
      • Update an asset
      • Search assets
      • Get all meta tags
      • Get asset meta tags
      • Update asset meta tags
  1. Users

Get user groups

Production
https://api-v2.getmarvia.com
Production
https://api-v2.getmarvia.com
GET
https://api-v2.getmarvia.com
/v1/users/{uuid}/groups
Required Permissions: read:users and read:groups
This endpoint requires an API key with the read:users and read:groups permissions. Make sure your token was created with these permissions during token creation.

Request

Authorization
API Key
Add parameter in header
Authorization
Example:
Authorization: ********************
or
Path Params

Header Params

Responses

🟢200OK
application/json
Success
Body

🟠400Bad Request
🟠401Unauthorized
🟠404Not Found
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-v2.getmarvia.com/v1/users//groups' \
--header 'Authorization: <api-key>'
Response Response Example
200 - Example 1
{
    "_tag": "Success",
    "data": [
        {
            "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
            "name": "string"
        }
    ]
}
Modified at 2025-10-22 12:46:34
Previous
Update user locations
Next
Update user groups
Built with