Mapp Marketing Cloud Group Attributes API

The Group Attributes API from Mapp Marketing Cloud — 8 operation(s) for group attributes.

Operations 8

POST /groupAttributes/create Create a group attribute #
POST /groupAttributes/delete Delete group attributes by name (bulk) #
GET /groupAttributes/get Get a single group attribute by name #
POST /groupAttributes/importAttributes Import group attributes from CSV #
GET /groupAttributes/list List group attributes for a group #
GET /groupAttributes/export Trigger async CSV export of group attributes #
PUT /groupAttributes/update Update a group attribute #
GET /groupAttributes/validateName Validate group attribute name uniqueness within a group #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/mapp-group-attributes-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

mapp-group-attributes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Mapp Engage public Group Attributes API
  version: '1'
  description: 'Mapp Engage REST API (REST 2.0, incremental version v19). Assembled verbatim from the per-operation OpenAPI fragments Mapp publishes on each endpoint page of https://docs.mapp.com/apidocs/. The base URL is tenant-specific: take your Mapp Engage login host and append /api/rest/v19.'
  contact:
    name: Mapp Technical Support
    url: https://mapp.com/tech-support/
servers:
- url: /api/rest/v19
security:
- basicAuth: []
tags:
- name: Group Attributes
paths:
  /groupAttributes/create:
    post:
      tags:
      - Group Attributes
      summary: Create a group attribute
      description: ''
      operationId: create_2
      parameters:
      - name: groupId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GroupAttributeData'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GroupAttributeData'
  /groupAttributes/delete:
    post:
      tags:
      - Group Attributes
      summary: Delete group attributes by name (bulk)
      description: ''
      operationId: delete_4
      parameters:
      - name: groupId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      responses:
        default:
          description: successful operation
  /groupAttributes/get:
    get:
      tags:
      - Group Attributes
      summary: Get a single group attribute by name
      description: ''
      operationId: get_3
      parameters:
      - name: groupId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: attributeName
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GroupAttributeData'
        '404':
          description: Not found
  /groupAttributes/importAttributes:
    post:
      tags:
      - Group Attributes
      summary: Import group attributes from CSV
      description: ''
      operationId: importAttributes
      parameters:
      - name: groupId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: syncMode
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GroupAttributeImportResult'
  /groupAttributes/list:
    get:
      tags:
      - Group Attributes
      summary: List group attributes for a group
      description: ''
      operationId: list_2
      parameters:
      - name: groupId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GroupAttributeData'
  /groupAttributes/export:
    get:
      tags:
      - Group Attributes
      summary: Trigger async CSV export of group attributes
      description: ''
      operationId: export_2
      parameters:
      - name: groupId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExportJobResult'
  /groupAttributes/update:
    put:
      tags:
      - Group Attributes
      summary: Update a group attribute
      description: ''
      operationId: update_2
      parameters:
      - name: groupId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GroupAttributeData'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GroupAttributeData'
  /groupAttributes/validateName:
    get:
      tags:
      - Group Attributes
      summary: Validate group attribute name uniqueness within a group
      description: ''
      operationId: validateName
      parameters:
      - name: groupId
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: name
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: boolean
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic authentication with a Mapp Engage system user of type API (or Hybrid).
x-apievangelist-provenance:
  method: searched
  generated: '2026-08-12'
  source: https://docs.mapp.com/apidocs/ (per-endpoint OpenAPI fragments)
  note: Union of the OpenAPI JSON fragments Mapp publishes on each endpoint page. Mapp does not serve one consolidated document at a public URL; the tenant-served Swagger lives at https://<your-engage-host>/apidoc/swagger.json and requires a tenant. Operation bodies, parameters, responses, tags, summaries and descriptions are verbatim from Mapp. The swagger/basePath/schemes/securityDefinitions envelope is added by API Evangelist from the published Getting Started guide; no operation content was authored.
  duplicate_operation_ids_suffixed: 30