DocsAPI ReferenceAbout
DocsAPI ReferenceAbout
  1. groups
  • 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
      • Create a new user
      • Get a user
      • Delete a user
    • 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 single asset
    • products
      • List products
  1. groups

Create a new group

Production
https://api-v2.getmarvia.com
Production
https://api-v2.getmarvia.com
POST
https://api-v2.getmarvia.com
/v1/groups
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-v2.getmarvia.com/v1/groups' \
--header 'Authorization: ' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "Marketing Team"
}'
Response Response Example
201 - Example 1
{
    "data": {
        "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
    }
}

Request

Header Params

Body Params application/json

Examples

Responses

🟢201Created
application/json
Group created successfully
Body

🟠400Bad Request
🔴500Server Error
Modified at 2025-07-25 04:54:55
Previous
List groups
Next
Get a group
Built with