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

List groups

Production
https://api-v2.getmarvia.com
Production
https://api-v2.getmarvia.com
GET
https://api-v2.getmarvia.com
/v1/groups
Required Permission: read:groups
This endpoint requires an API key with the read:groups permission. Make sure your token was created with this permission during token creation.

Request

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

Header Params

Responses

🟢200OK
application/json
Success
Body

🟠400Bad Request
🟠401Unauthorized
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-v2.getmarvia.com/v1/groups?limit&page&sortBy&sortOrder' \
--header 'Authorization: <api-key>'
Response Response Example
200 - Example 1
{
    "_tag": "Success",
    "data": [
        {
            "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
            "name": "string"
        }
    ],
    "pagination": {
        "limit": 1,
        "page": 1,
        "total": 0,
        "pageCount": 0
    }
}
Modified at 2025-09-08 06:20:01
Previous
Delete a group
Next
Create a new group
Built with