Symphony · Capability

Symphony Profile Manager — Groups

Symphony Profile Manager — Groups. 7 operations. Lead operation: Symphony Insert a New Group. Self-contained Naftiko capability covering one Symphony business surface.

Run with Naftiko SymphonyGroups

What You Can Do

POST
Insertgroup — Symphony Insert a New Group
/v1/v1/groups
DELETE
Deleteallgroups — Symphony Delete all data related to the current pod (extracted from JWT). This endpoint is for maintenance/test and it is usually disabled or restricted
/v1/v1/groups/deleteall
GET
Listgroups — Symphony List All Groups of Specified Type
/v1/v1/groups/type/{typeid}
GET
Getgroup — Symphony Retrieve a Group
/v1/v1/groups/{groupid}
PUT
Updategroup — Symphony Update a Group
/v1/v1/groups/{groupid}
POST
Updateavatar — Symphony Update the Group Avatar
/v1/v1/groups/{groupid}/avatar
POST
Addmembertogroup — Symphony Add a New User to a an Existing Group
/v1/v1/groups/{groupid}/member

MCP Tools

symphony-insert-new-group

Symphony Insert a New Group

symphony-delete-all-data-related

Symphony Delete all data related to the current pod (extracted from JWT). This endpoint is for maintenance/test and it is usually disabled or restricted

idempotent
symphony-list-all-groups-specified

Symphony List All Groups of Specified Type

read-only idempotent
symphony-retrieve-group

Symphony Retrieve a Group

read-only idempotent
symphony-update-group

Symphony Update a Group

idempotent
symphony-update-group-avatar

Symphony Update the Group Avatar

symphony-add-new-user-existing

Symphony Add a New User to a an Existing Group

Capability Spec

profile-manager-groups.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Symphony Profile Manager — Groups
  description: 'Symphony Profile Manager — Groups. 7 operations. Lead operation: Symphony Insert a New Group. Self-contained
    Naftiko capability covering one Symphony business surface.'
  tags:
  - Symphony
  - Groups
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SYMPHONY_API_KEY: SYMPHONY_API_KEY
capability:
  consumes:
  - type: http
    namespace: profile-manager-groups
    baseUri: ''
    description: Symphony Profile Manager — Groups business capability. Self-contained, no shared references.
    resources:
    - name: v1-groups
      path: /v1/groups
      operations:
      - name: insertgroup
        method: POST
        description: Symphony Insert a New Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: X-Symphony-Host
          in: header
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v1-groups-deleteAll
      path: /v1/groups/deleteAll
      operations:
      - name: deleteallgroups
        method: DELETE
        description: Symphony Delete all data related to the current pod (extracted from JWT). This endpoint is for maintenance/test
          and it is usually disabled or restricted
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: X-Symphony-Host
          in: header
          type: string
          required: true
    - name: v1-groups-type-typeId
      path: /v1/groups/type/{typeId}
      operations:
      - name: listgroups
        method: GET
        description: Symphony List All Groups of Specified Type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: X-Symphony-Host
          in: header
          type: string
          required: true
        - name: typeId
          in: path
          type: string
          description: Group type id
          required: true
        - name: status
          in: query
          type: string
          description: filter by status, active or deleted. If not specified both are returned
        - name: before
          in: query
          type: string
          description: NOT SUPPORTED YET, currently ignored. Cursor that points to the start of the current page of data.
            If not present, the current page is the first page
        - name: after
          in: query
          type: string
          description: cursor that points to the end of the current page of data. If not present, the current page is the
            last page
        - name: limit
          in: query
          type: integer
          description: numbers of items to return
        - name: sortOrder
          in: query
          type: string
          description: items sorting direction (ordered by createdDate)
    - name: v1-groups-groupId
      path: /v1/groups/{groupId}
      operations:
      - name: getgroup
        method: GET
        description: Symphony Retrieve a Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: X-Symphony-Host
          in: header
          type: string
          required: true
        - name: groupId
          in: path
          type: string
          description: Group id
          required: true
      - name: updategroup
        method: PUT
        description: Symphony Update a Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: X-Symphony-Host
          in: header
          type: string
          required: true
        - name: If-Match
          in: header
          type: string
          required: true
        - name: groupId
          in: path
          type: string
          description: Group id
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v1-groups-groupId-avatar
      path: /v1/groups/{groupId}/avatar
      operations:
      - name: updateavatar
        method: POST
        description: Symphony Update the Group Avatar
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: X-Symphony-Host
          in: header
          type: string
          required: true
        - name: groupId
          in: path
          type: string
          description: Group id
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v1-groups-groupId-member
      path: /v1/groups/{groupId}/member
      operations:
      - name: addmembertogroup
        method: POST
        description: Symphony Add a New User to a an Existing Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: X-Symphony-Host
          in: header
          type: string
          required: true
        - name: groupId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.SYMPHONY_API_KEY}}'
  exposes:
  - type: rest
    namespace: profile-manager-groups-rest
    port: 8080
    description: REST adapter for Symphony Profile Manager — Groups. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/groups
      name: v1-groups
      description: REST surface for v1-groups.
      operations:
      - method: POST
        name: insertgroup
        description: Symphony Insert a New Group
        call: profile-manager-groups.insertgroup
        with:
          X-Symphony-Host: rest.X-Symphony-Host
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/groups/deleteall
      name: v1-groups-deleteall
      description: REST surface for v1-groups-deleteAll.
      operations:
      - method: DELETE
        name: deleteallgroups
        description: Symphony Delete all data related to the current pod (extracted from JWT). This endpoint is for maintenance/test
          and it is usually disabled or restricted
        call: profile-manager-groups.deleteallgroups
        with:
          X-Symphony-Host: rest.X-Symphony-Host
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/groups/type/{typeid}
      name: v1-groups-type-typeid
      description: REST surface for v1-groups-type-typeId.
      operations:
      - method: GET
        name: listgroups
        description: Symphony List All Groups of Specified Type
        call: profile-manager-groups.listgroups
        with:
          X-Symphony-Host: rest.X-Symphony-Host
          typeId: rest.typeId
          status: rest.status
          before: rest.before
          after: rest.after
          limit: rest.limit
          sortOrder: rest.sortOrder
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/groups/{groupid}
      name: v1-groups-groupid
      description: REST surface for v1-groups-groupId.
      operations:
      - method: GET
        name: getgroup
        description: Symphony Retrieve a Group
        call: profile-manager-groups.getgroup
        with:
          X-Symphony-Host: rest.X-Symphony-Host
          groupId: rest.groupId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updategroup
        description: Symphony Update a Group
        call: profile-manager-groups.updategroup
        with:
          X-Symphony-Host: rest.X-Symphony-Host
          If-Match: rest.If-Match
          groupId: rest.groupId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/groups/{groupid}/avatar
      name: v1-groups-groupid-avatar
      description: REST surface for v1-groups-groupId-avatar.
      operations:
      - method: POST
        name: updateavatar
        description: Symphony Update the Group Avatar
        call: profile-manager-groups.updateavatar
        with:
          X-Symphony-Host: rest.X-Symphony-Host
          groupId: rest.groupId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/groups/{groupid}/member
      name: v1-groups-groupid-member
      description: REST surface for v1-groups-groupId-member.
      operations:
      - method: POST
        name: addmembertogroup
        description: Symphony Add a New User to a an Existing Group
        call: profile-manager-groups.addmembertogroup
        with:
          X-Symphony-Host: rest.X-Symphony-Host
          groupId: rest.groupId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: profile-manager-groups-mcp
    port: 9090
    transport: http
    description: MCP adapter for Symphony Profile Manager — Groups. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: symphony-insert-new-group
      description: Symphony Insert a New Group
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: profile-manager-groups.insertgroup
      with:
        X-Symphony-Host: tools.X-Symphony-Host
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: symphony-delete-all-data-related
      description: Symphony Delete all data related to the current pod (extracted from JWT). This endpoint is for maintenance/test
        and it is usually disabled or restricted
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: profile-manager-groups.deleteallgroups
      with:
        X-Symphony-Host: tools.X-Symphony-Host
      outputParameters:
      - type: object
        mapping: $.
    - name: symphony-list-all-groups-specified
      description: Symphony List All Groups of Specified Type
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: profile-manager-groups.listgroups
      with:
        X-Symphony-Host: tools.X-Symphony-Host
        typeId: tools.typeId
        status: tools.status
        before: tools.before
        after: tools.after
        limit: tools.limit
        sortOrder: tools.sortOrder
      outputParameters:
      - type: object
        mapping: $.
    - name: symphony-retrieve-group
      description: Symphony Retrieve a Group
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: profile-manager-groups.getgroup
      with:
        X-Symphony-Host: tools.X-Symphony-Host
        groupId: tools.groupId
      outputParameters:
      - type: object
        mapping: $.
    - name: symphony-update-group
      description: Symphony Update a Group
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: profile-manager-groups.updategroup
      with:
        X-Symphony-Host: tools.X-Symphony-Host
        If-Match: tools.If-Match
        groupId: tools.groupId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: symphony-update-group-avatar
      description: Symphony Update the Group Avatar
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: profile-manager-groups.updateavatar
      with:
        X-Symphony-Host: tools.X-Symphony-Host
        groupId: tools.groupId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: symphony-add-new-user-existing
      description: Symphony Add a New User to a an Existing Group
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: profile-manager-groups.addmembertogroup
      with:
        X-Symphony-Host: tools.X-Symphony-Host
        groupId: tools.groupId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.