---
title: "Group"
url: "https://earlyaccess.developers.bynder.com/apis/cxuc-1/versions/9a8a4a13-fdd4-455b-8d92-5f16aea67949/schemas/Group"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/cxuc-1/versions/9a8a4a13-fdd4-455b-8d92-5f16aea67949.md

# Group

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: CXUC
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}/
components:
  schemas:
    GuideOverview:
      properties:
        canEdit:
          type: boolean
        canView:
          type: boolean
        cover:
          $ref: "#/components/schemas/Cover"
        creationTime:
          type: string
        groupId:
          format: uuid
          type: string
        id:
          format: uuid
          type: string
        isFeatured:
          type: boolean
        lastModifiedTime:
          type: string
        ownerId:
          type: string
        shared:
          type: boolean
        targetedPagesEnabled:
          type: boolean
        title:
          type: string
        type:
          $ref: "#/components/schemas/GuideType"
        version:
          type: integer
        visibility:
          $ref: "#/components/schemas/Visibility"
      title: GuideOverview
      type: object
    Visibility:
      enum:
        - PRIVATE
        - SPECIFIC
        - PORTAL
        - PUBLIC
      title: Visibility
      type: string
    Cover:
      properties:
        assetId:
          type: string
        assetName:
          type: string
        detailUrl:
          type: string
        imageUrl:
          type: string
      title: Cover
      type: object
    GuideType:
      enum:
        - MULTI_PAGE
        - SINGLE_PAGE
        - HOME_PAGE
      title: GuideType
      type: string
    Group:
      properties:
        canEdit:
          type: boolean
        canView:
          type: boolean
        cover:
          properties:
            assetId:
              type: string
            assetName:
              type: string
            colorId:
              type: string
            detailUrl:
              type: string
            imageUrl:
              type: string
          title: GroupCover
          type: object
        creationTime:
          type: string
        description:
          type: string
        guideIds:
          items:
            format: uuid
            type: string
          type: array
        guides:
          items:
            $ref: "#/components/schemas/GuideOverview"
          type: array
        id:
          format: uuid
          type: string
        lastModifiedTime:
          type: string
        ownerId:
          type: string
        shared:
          type: boolean
        title:
          type: string
        version:
          type: integer
        visibility:
          $ref: "#/components/schemas/Visibility"
      title: Group
      type: object
```
