chat.bsky.group.createGroup

Creates a group convo, specifying the members to be added to it. Unlike getConvoForMembers, this isn’t idempotent. It will create new groups even if the membership is identical to pre-existing groups. Will create ‘request’ membership for all members, except the owner who is ‘accepted’.

class atproto_client.models.chat.bsky.group.create_group.Data

Bases: DataModelBase

Input data model for chat.bsky.group.createGroup.

field members: List[Did] [Required]

The members to add to the group. The owner is automatically added. Implementations may enforce a lower maximum than the 10,000-item schema limit; Bluesky currently supports up to 100 total members. If the owner is included in this list, the list may contain up to the implementation’s total member limit. Otherwise, it may contain one fewer.

Constraints:
  • max_length = 10000

field name: str [Required]

Name.

Constraints:
  • min_length = 1

  • max_length = 500

class atproto_client.models.chat.bsky.group.create_group.DataDict

Bases: TypedDict

members: List[Did]

The members to add to the group. The owner is automatically added. Implementations may enforce a lower maximum than the 10,000-item schema limit; Bluesky currently supports up to 100 total members. If the owner is included in this list, the list may contain up to the implementation’s total member limit. Otherwise, it may contain one fewer.

name: str

Name.

class atproto_client.models.chat.bsky.group.create_group.Response

Bases: ResponseModelBase

Output data model for chat.bsky.group.createGroup.

field convo: models.ChatBskyConvoDefs.ConvoView [Required]

Convo.