Skip to main content

Gcp/chat

@swamp/gcp/chatv2026.06.03.1· 1d agoMODELS
01README

Google Cloud chat infrastructure models

02Release Notes
  • Updated: spaces_members, spaces_spaceevents
03Models10
customemojis.tsv2026.05.25.2

Global Arguments

ArgumentTypeDescription
name?stringIdentifier. The resource name of the custom emoji, assigned by the server. Format: `customEmojis/{customEmoji}`
payload?objectRequired. Input only. The image used for the custom emoji. The payload must be under 256 KB and the dimension of the image must be square and between 64 and 500 pixels. The restrictions are subject to change.
fn create()
Create a customEmojis
fn get(identifier: string)
Get a customEmojis
ArgumentTypeDescription
identifierstringThe name of the customEmojis
fn delete(identifier: string)
Delete the customEmojis
ArgumentTypeDescription
identifierstringThe name of the customEmojis
fn sync()
Sync customEmojis state from GCP
fn list(filter?: string, pageSize?: number, maxPages?: number)
List customEmojis resources
ArgumentTypeDescription
filter?stringOptional. A query filter. Supports filtering by creator. To filter by creator, you must specify a valid value. Currently only `creator("users/me")` and `NOT creator("users/me")` are accepted to filter custom emojis by whether they were created by the calling user or not. For example, the following query returns custom emojis created by the caller: ``` creator("users/me") ``` Invalid queries are rejected with an `INVALID_ARGUMENT` error.
pageSize?numberOptional. The maximum number of custom emojis returned. The service can return fewer custom emojis than this value. If unspecified, the default value is 25. The maximum value is 200; values above 200 are changed to 200.
maxPages?numberMaximum number of pages to fetch (default: 10)
spaces.tsv2026.05.26.1

Global Arguments

ArgumentTypeDescription
accessSettings?objectOutput only. Indicates the access state of the space.
customer?stringOptional. Immutable. The customer id of the domain of the space. Required only when creating a space with [app authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app) and `SpaceType` is `SPACE`, otherwise should not be set. In the format `customers/{customer}`, where `customer` is the `id` from the [Admin SDK customer resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers). Private apps can also use the `customers/my_customer` alias to create the space in the same Google Workspace organization as the app. This field isn't populated for direct messages (DMs) or when the space is created by non-Google Workspace users.
displayName?stringOptional. The space's display name. Required when [creating a space](https://developers.google.com/workspace/chat/api/reference/rest/v1/spaces/create) with a `spaceType` of `SPACE`. If you receive the error message `ALREADY_EXISTS` when creating a space or updating the `displayName`, try a different `displayName`. An existing space within the Google Workspace organization might already use this display name. For direct messages, this field might be empty. Supports up to 128 characters.
importMode?booleanOptional. Whether this space is created in `Import Mode` as part of a data migration into Google Workspace. While spaces are being imported, they aren't visible to users until the import is complete. Creating a space in `Import Mode`requires [user authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user).
membershipCount?objectOutput only. Count of human users that have directly joined the space, not counting users joined by having membership in a joined group.
name?stringIdentifier. Resource name of the space. Format: `spaces/{space}` Where `{space}` represents the system-assigned ID for the space. You can obtain the space ID by calling the [`spaces.list()`](https://developers.google.com/workspace/chat/api/reference/rest/v1/spaces/list) method or from the space URL. For example, if the space URL is `https://mail.google.com/mail/u/0/#chat/space/AAAAAAAAA`, the space ID is `AAAAAAAAA`.
permissionSettings?objectOptional. Whether space managers `ROLE_ASSISTANT_MANAGER`) have this permission.
predefinedPermissionSettings?enumOptional. Input only. Predefined space permission settings, input only when creating a space. If the field is not set, a collaboration space is created. After you create the space, settings are populated in the `PermissionSettings` field. Setting predefined permission settings supports: - [App authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app) with [administrator approval](https://support.google.com/a?p=chat-app-auth) with the `chat.app.spaces` or `chat.app.spaces.create` scopes. - [User authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
singleUserBotDm?booleanOptional. Whether the space is a DM between a Chat app and a single human.
spaceDetails?objectOptional. A description of the space. For example, describe the space's discussion topic, functional purpose, or participants. Supports up to 150 characters.
spaceHistoryState?enumOptional. The message history state for messages and threads in this space.
requestId?stringOptional. A unique identifier for this request. A random UUID is recommended. Specifying an existing request ID returns the space created with that ID instead of creating a new space. Specifying an existing request ID from the same Chat app with a different authenticated user returns an error.
fn create()
Create a spaces
fn get(identifier: string)
Get a spaces
ArgumentTypeDescription
identifierstringThe name of the spaces
fn update()
Update spaces attributes
fn delete(identifier: string)
Delete the spaces
ArgumentTypeDescription
identifierstringThe name of the spaces
fn sync()
Sync spaces state from GCP
fn list(filter?: string, pageSize?: number, maxPages?: number)
List spaces resources
ArgumentTypeDescription
filter?stringOptional. A query filter. You can filter spaces by the space type ([`space_type`](https://developers.google.com/workspace/chat/api/reference/rest/v1/spaces#spacetype)). To filter by space type, you must specify valid enum value, such as `SPACE` or `GROUP_CHAT` (the `space_type` can\'t be `SPACE_TYPE_UNSPECIFIED`). To query for multiple space types, use the `OR` operator. For example, the following queries are valid: ``` space_type = "SPACE" spaceType = "GROUP_CHAT" OR spaceType = "DIRECT_MESSAGE" ``` Invalid queries are rejected by the server with an `INVALID_ARGUMENT` error.
pageSize?numberOptional. The maximum number of spaces to return. The service might return fewer than this value. If unspecified, at most 100 spaces are returned. The maximum value is 1000. If you use a value more than 1000, it's automatically changed to 1000. Negative values return an `INVALID_ARGUMENT` error.
maxPages?numberMaximum number of pages to fetch (default: 10)
fn complete_import()
complete import
fn find_direct_message()
find direct message
fn find_group_chats()
find group chats
fn search()
search
fn setup(memberships?: any, requestId?: any, space?: any)
setup
ArgumentTypeDescription
memberships?any
requestId?any
space?any
spaces_members.tsv2026.06.03.1

Global Arguments

ArgumentTypeDescription
groupMember?objectResource name for a Google Group. Represents a [group](https://cloud.google.com/identity/docs/reference/rest/v1/groups) in Cloud Identity Groups API. Format: groups/{group}
member?objectOutput only. The user's display name.
name?stringIdentifier. Resource name of the membership, assigned by the server. Format: `spaces/{space}/members/{member}`
role?enumOptional. User's role within a Chat space, which determines their permitted actions in the space. This field can only be used as input in `UpdateMembership`.
useAdminAccess?stringOptional. When `true`, the method runs using the user's Google Workspace administrator privileges. The calling user must be a Google Workspace administrator with the [manage chat and spaces conversations privilege](https://support.google.com/a/answer/13369245). Requires the `chat.admin.memberships` [OAuth 2.0 scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes). Creating app memberships or creating memberships for users outside the administrator's Google Workspace organization isn't supported using admin access.
parent?stringThe parent resource name (e.g., projects/my-project/locations/us-central1, organizations/123, folders/456)
fn create()
Create a members
fn get(identifier: string)
Get a members
ArgumentTypeDescription
identifierstringThe name of the members
fn update()
Update members attributes
fn delete(identifier: string)
Delete the members
ArgumentTypeDescription
identifierstringThe name of the members
fn sync()
Sync members state from GCP
fn list(filter?: string, pageSize?: number, showGroups?: boolean, showInvited?: boolean, useAdminAccess?: boolean, maxPages?: number)
List members resources
ArgumentTypeDescription
filter?stringOptional. A query filter. You can filter memberships by a member\'s role ([`role`](https://developers.google.com/workspace/chat/api/reference/rest/v1/spaces.members#membershiprole)) and type ([`member.type`](https://developers.google.com/workspace/chat/api/reference/rest/v1/User#type)). To filter by role, set `role` to `ROLE_MEMBER` or `ROLE_MANAGER`. To filter by type, set `member.type` to `HUMAN` or `BOT`. You can also filter for `member.type` using the `!=` operator. To filter by both role and type, use the `AND` operator. To filter by either role or type, use the `OR` operator. Either `member.type = "HUMAN"` or `member.type != "BOT"` is required when `use_admin_access` is set to true. Other member type filters will be rejected. For example, the following queries are valid: ``` role = "ROLE_MANAGER" OR role = "ROLE_MEMBER" member.type = "HUMAN" AND role = "ROLE_MANAGER" member.type != "BOT" ``` The following queries are invalid: ``` member.type = "HUMAN" AND member.type = "BOT" role = "ROLE_MANAGER" AND role = "ROLE_MEMBER" ``` Invalid queries are rejected by the server with an `INVALID_ARGUMENT` error.
pageSize?numberOptional. The maximum number of memberships to return. The service might return fewer than this value. If unspecified, at most 100 memberships are returned. The maximum value is 1000. If you use a value more than 1000, it's automatically changed to 1000. Negative values return an `INVALID_ARGUMENT` error.
showGroups?booleanOptional. When `true`, also returns memberships associated with a Google Group, in addition to other types of memberships. If a filter is set, Google Group memberships that don't match the filter criteria aren't returned.
showInvited?booleanOptional. When `true`, also returns memberships associated with invited members, in addition to other types of memberships. If a filter is set, invited memberships that don't match the filter criteria aren't returned. Currently requires [user authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user).
useAdminAccess?booleanOptional. When `true`, the method runs using the user's Google Workspace administrator privileges. The calling user must be a Google Workspace administrator with the [manage chat and spaces conversations privilege](https://support.google.com/a/answer/13369245). Requires either the `chat.admin.memberships.readonly` or `chat.admin.memberships` [OAuth 2.0 scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes). Listing app memberships in a space isn't supported when using admin access.
maxPages?numberMaximum number of pages to fetch (default: 10)
spaces_messages.tsv2026.05.26.1

Global Arguments

ArgumentTypeDescription
accessoryWidgets?arrayThe alternative text that\'s used for accessibility. Set descriptive text that lets users know what the button does. For example, if a button opens a hyperlink, you might write: "Opens a new browser tab and navigates to the Google Chat developer documentation at https://developers.google.com/workspace/chat".
actionResponse?objectThe status code.
attachment?arrayOptional. Opaque token containing a reference to an uploaded attachment. Treated by clients as an opaque string and used to create or update Chat messages with attachments.
cardsV2?arrayThe label that displays as the action menu item.
clientAssignedMessageId?stringOptional. A custom ID for the message. You can use field to identify a message, or to get, delete, or update a message. To set a custom ID, specify the [`messageId`](https://developers.google.com/workspace/chat/api/reference/rest/v1/spaces.messages/create#body.QUERY_PARAMETERS.message_id) field when you create the message. For details, see [Name a message](https://developers.google.com/workspace/chat/create-messages#name_a_created_message).
deletionMetadata?objectIndicates who deleted the message.
fallbackText?stringOptional. A plain-text description of the message's cards, used when the actual cards can't be displayed—for example, mobile notifications.
matchedUrl?objectOutput only. The URL that was matched.
name?stringIdentifier. Resource name of the message. Format: `spaces/{space}/messages/{message}` Where `{space}` is the ID of the space where the message is posted and `{message}` is a system-assigned ID for the message. For example, `spaces/AAAAAAAAAAA/messages/BBBBBBBBBBB.BBBBBBBBBBB`. If you set a custom ID when you create a message, you can use this ID to specify the message in a request by replacing `{message}` with the value from the `clientAssignedMessageId` field. For example, `spaces/AAAAAAAAAAA/messages/client-custom-name`. For details, see [Name a message](https://developers.google.com/workspace/chat/create-messages#name_a_created_message).
privateMessageViewer?objectOutput only. The user's display name.
quotedMessageMetadata?objectOutput only. The resource name of the source space. Format: spaces/{space}
sender?objectOutput only. The user's display name.
slashCommand?objectThe ID of the slash command.
space?objectOutput only. Indicates the access state of the space.
text?stringOptional. Plain-text body of the message. The first link to an image, video, or web page generates a [preview chip](https://developers.google.com/workspace/chat/preview-links). You can also [@mention a Google Chat user](https://developers.google.com/workspace/chat/format-messages#messages-@mention), or everyone in the space. To learn about creating text messages, see [Send a message](https://developers.google.com/workspace/chat/create-messages).
thread?objectIdentifier. Resource name of the thread. Example: `spaces/{space}/threads/{thread}`
createMessageNotificationOptions_notificationType?stringThe notification type for the message.
messageId?stringOptional. A custom ID for a message. Lets Chat apps get, update, or delete a message without needing to store the system-assigned ID in the message's resource name (represented in the message `name` field). The value for this field must meet the following requirements: * Begins with `client-`. For example, `client-custom-name` is a valid custom ID, but `custom-name` is not. * Contains up to 63 characters and only lowercase letters, numbers, and hyphens. * Is unique within a space. A Chat app can't use the same custom ID for different messages. For details, see [Name a message](https://developers.google.com/workspace/chat/create-messages#name_a_created_message).
messageReplyOption?stringOptional. Specifies whether a message starts a thread or replies to one. Only supported in named spaces. When [responding to user interactions](https://developers.google.com/workspace/chat/receive-respond-interactions), this field is ignored. For interactions within a thread, the reply is created in the same thread. Otherwise, the reply is created as a new thread.
requestId?stringOptional. A unique request ID for this message. Specifying an existing request ID returns the message created with that ID instead of creating a new message.
parent?stringThe parent resource name (e.g., projects/my-project/locations/us-central1, organizations/123, folders/456)
fn create()
Create a messages
fn get(identifier: string)
Get a messages
ArgumentTypeDescription
identifierstringThe name of the messages
fn update()
Update messages attributes
fn delete(identifier: string)
Delete the messages
ArgumentTypeDescription
identifierstringThe name of the messages
fn sync()
Sync messages state from GCP
fn list(filter?: string, orderBy?: string, pageSize?: number, showDeleted?: boolean, maxPages?: number)
List messages resources
ArgumentTypeDescription
filter?stringOptional. A query filter. You can filter messages by date (`create_time`) and thread (`thread.name`). To filter messages by the date they were created, specify the `create_time` with a timestamp in [RFC-3339](https://www.rfc-editor.org/rfc/rfc3339) format and double quotation marks. For example, `"2023-04-21T11:30:00-04:00"`. You can use the greater than operator `>` to list messages that were created after a timestamp, or the less than operator `<` to list messages that were created before a timestamp. To filter messages within a time interval, use the `AND` operator between two timestamps. To filter by thread, specify the `thread.name`, formatted as `spaces/{space}/threads/{thread}`. You can only specify one `thread.name` per query. To filter by both thread and date, use the `AND` operator in your query. For example, the following queries are valid: ``` create_time > "2012-04-21T11:30:00-04:00" create_time > "2012-04-21T11:30:00-04:00" AND thread.name = spaces/AAAAAAAAAAA/threads/123 create_time > "2012-04-21T11:30:00+00:00" AND create_time < "2013-01-01T00:00:00+00:00" AND thread.name = spaces/AAAAAAAAAAA/threads/123 thread.name = spaces/AAAAAAAAAAA/threads/123 ``` Invalid queries are rejected by the server with an `INVALID_ARGUMENT` error.
orderBy?stringOptional. How the list of messages is ordered. Specify a value to order by an ordering operation. Valid ordering operation values are as follows: - `ASC` for ascending. - `DESC` for descending. The default ordering is `create_time ASC`.
pageSize?numberOptional. The maximum number of messages returned. The service might return fewer messages than this value. If unspecified, at most 25 are returned. The maximum value is 1000. If you use a value more than 1000, it's automatically changed to 1000. Negative values return an `INVALID_ARGUMENT` error.
showDeleted?booleanOptional. Whether to include deleted messages. Deleted messages include deleted time and metadata about their deletion, but message content is unavailable.
maxPages?numberMaximum number of pages to fetch (default: 10)
spaces_messages_attachments.tsv2026.05.25.1

Global Arguments

ArgumentTypeDescription
namestringInstance name for this resource (used as the unique identifier in the factory pattern)
fn get(identifier: string)
Get a attachments
ArgumentTypeDescription
identifierstringThe name of the attachments
fn sync()
Sync attachments state from GCP
spaces_messages_reactions.tsv2026.05.25.1

Global Arguments

ArgumentTypeDescription
emoji?objectOptional. Immutable. User-provided name for the custom emoji, which is unique within the organization. Required when the custom emoji is created, output only otherwise. Emoji names must start and end with colons, must be lowercase and can only contain alphanumeric characters, hyphens, and underscores. Hyphens and underscores should be used to separate words and cannot be used consecutively. Example: `:valid-emoji-name:`
name?stringIdentifier. The resource name of the reaction. Format: `spaces/{space}/messages/{message}/reactions/{reaction}`
user?objectOutput only. The user's display name.
parent?stringThe parent resource name (e.g., projects/my-project/locations/us-central1, organizations/123, folders/456)
fn create()
Create a reactions
fn get(identifier: string)
Get a reactions
ArgumentTypeDescription
identifierstringThe name of the reactions
fn delete(identifier: string)
Delete the reactions
ArgumentTypeDescription
identifierstringThe name of the reactions
fn sync()
Sync reactions state from GCP
fn list(filter?: string, pageSize?: number, maxPages?: number)
List reactions resources
ArgumentTypeDescription
filter?stringOptional. A query filter. You can filter reactions by [emoji](https://developers.google.com/workspace/chat/api/reference/rest/v1/Emoji) (either `emoji.unicode` or `emoji.custom_emoji.uid`) and [user](https://developers.google.com/workspace/chat/api/reference/rest/v1/User) (`user.name`). To filter reactions for multiple emojis or users, join similar fields with the `OR` operator, such as `emoji.unicode = "🙂" OR emoji.unicode = "👍"` and `user.name = "users/AAAAAA" OR user.name = "users/BBBBBB"`. To filter reactions by emoji and user, use the `AND` operator, such as `emoji.unicode = "🙂" AND user.name = "users/AAAAAA"`. If your query uses both `AND` and `OR`, group them with parentheses. For example, the following queries are valid: ``` user.name = "users/{user}" emoji.unicode = "🙂" emoji.custom_emoji.uid = "{uid}" emoji.unicode = "🙂" OR emoji.unicode = "👍" emoji.unicode = "🙂" OR emoji.custom_emoji.uid = "{uid}" emoji.unicode = "🙂" AND user.name = "users/{user}" (emoji.unicode = "🙂" OR emoji.custom_emoji.uid = "{uid}") AND user.name = "users/{user}" ``` The following queries are invalid: ``` emoji.unicode = "🙂" AND emoji.unicode = "👍" emoji.unicode = "🙂" AND emoji.custom_emoji.uid = "{uid}" emoji.unicode = "🙂" OR user.name = "users/{user}" emoji.unicode = "🙂" OR emoji.custom_emoji.uid = "{uid}" OR user.name = "users/{user}" emoji.unicode = "🙂" OR emoji.custom_emoji.uid = "{uid}" AND user.name = "users/{user}" ``` Invalid queries are rejected with an `INVALID_ARGUMENT` error.
pageSize?numberOptional. The maximum number of reactions returned. The service can return fewer reactions than this value. If unspecified, the default value is 25. The maximum value is 200; values above 200 are changed to 200.
maxPages?numberMaximum number of pages to fetch (default: 10)
spaces_spaceevents.tsv2026.06.03.1

Global Arguments

ArgumentTypeDescription
namestringInstance name for this resource (used as the unique identifier in the factory pattern)
parent?stringThe parent resource name (e.g., projects/my-project/locations/us-central1, organizations/123, folders/456)
fn get(identifier: string)
Get a spaceEvents
ArgumentTypeDescription
identifierstringThe name of the spaceEvents
fn sync()
Sync spaceEvents state from GCP
fn list(filter?: string, pageSize?: number, maxPages?: number)
List spaceEvents resources
ArgumentTypeDescription
filter?stringRequired. A query filter. You must specify at least one event type (`event_type`) using the has `:` operator. To filter by multiple event types, use the `OR` operator. Omit batch event types in your filter. The request automatically returns any related batch events. For example, if you filter by new reactions (`google.workspace.chat.reaction.v1.created`), the server also returns batch new reactions events (`google.workspace.chat.reaction.v1.batchCreated`). For a list of supported event types, see the [`SpaceEvents` reference documentation](https://developers.google.com/workspace/chat/api/reference/rest/v1/spaces.spaceEvents#SpaceEvent.FIELDS.event_type). Optionally, you can also filter by start time (`start_time`) and end time (`end_time`): * `start_time`: Exclusive timestamp from which to start listing space events. You can list events that occurred up to 28 days ago. If unspecified, lists space events from the past 28 days. * `end_time`: Inclusive timestamp until which space events are listed. If unspecified, lists events up to the time of the request. To specify a start or end time, use the equals `=` operator and format in [RFC-3339](https://www.rfc-editor.org/rfc/rfc3339). To filter by both `start_time` and `end_time`, use the `AND` operator. For example, the following queries are valid: ``` start_time="2023-08-23T19:20:33+00:00" AND end_time="2023-08-23T19:21:54+00:00" ``` ``` start_time="2023-08-23T19:20:33+00:00" AND (event_types:"google.workspace.chat.space.v1.updated" OR event_types:"google.workspace.chat.message.v1.created") ``` The following queries are invalid: ``` start_time="2023-08-23T19:20:33+00:00" OR end_time="2023-08-23T19:21:54+00:00" ``` ``` event_types:"google.workspace.chat.space.v1.updated" AND event_types:"google.workspace.chat.message.v1.created" ``` Invalid queries are rejected by the server with an `INVALID_ARGUMENT` error.
pageSize?numberOptional. The maximum number of space events returned. The service might return fewer than this value. Negative values return an `INVALID_ARGUMENT` error.
maxPages?numberMaximum number of pages to fetch (default: 10)
users_sections.tsv2026.05.26.1

Global Arguments

ArgumentTypeDescription
displayName?stringOptional. The section's display name. Only populated for sections of type `CUSTOM_SECTION`. Supports up to 80 characters. Required when creating a `CUSTOM_SECTION`.
name?stringIdentifier. Resource name of the section. For system sections, the section ID is a constant string: - DEFAULT_DIRECT_MESSAGES: `users/{user}/sections/default-direct-messages` - DEFAULT_SPACES: `users/{user}/sections/default-spaces` - DEFAULT_APPS: `users/{user}/sections/default-apps` Format: `users/{user}/sections/{section}`
type?enumRequired. The type of the section.
parent?stringThe parent resource name (e.g., projects/my-project/locations/us-central1, organizations/123, folders/456)
fn create()
Create a sections
fn get(identifier: string)
Get a sections
ArgumentTypeDescription
identifierstringThe name of the sections
fn update()
Update sections attributes
fn delete(identifier: string)
Delete the sections
ArgumentTypeDescription
identifierstringThe name of the sections
fn sync()
Sync sections state from GCP
fn list(pageSize?: number, maxPages?: number)
List sections resources
ArgumentTypeDescription
pageSize?numberOptional. The maximum number of sections to return. The service may return fewer than this value. If unspecified, at most 10 sections will be returned. The maximum value is 100. If you use a value more than 100, it's automatically changed to 100. Negative values return an `INVALID_ARGUMENT` error.
maxPages?numberMaximum number of pages to fetch (default: 10)
fn position(relativePosition?: any, sortOrder?: any)
position
ArgumentTypeDescription
relativePosition?any
sortOrder?any
users_sections_items.tsv2026.05.26.1

Global Arguments

ArgumentTypeDescription
namestringInstance name for this resource (used as the unique identifier in the factory pattern)
parent?stringThe parent resource name (e.g., projects/my-project/locations/us-central1, organizations/123, folders/456)
fn get(identifier: string)
Get a items
ArgumentTypeDescription
identifierstringThe name of the items
fn sync()
Sync items state from GCP
fn list(filter?: string, pageSize?: number, maxPages?: number)
List items resources
ArgumentTypeDescription
filter?stringOptional. A query filter. Currently only supports filtering by space. For example, `space = spaces/{space}`. Invalid queries are rejected with an `INVALID_ARGUMENT` error.
pageSize?numberOptional. The maximum number of section items to return. The service may return fewer than this value. If unspecified, at most 10 section items will be returned. The maximum value is 100. If you use a value more than 100, it's automatically changed to 100. Negative values return an `INVALID_ARGUMENT` error.
maxPages?numberMaximum number of pages to fetch (default: 10)
fn move(targetSection?: any)
move
ArgumentTypeDescription
targetSection?any
users_spaces_spacenotificationsetting.tsv2026.05.25.1

Global Arguments

ArgumentTypeDescription
muteSetting?enumThe space notification mute setting.
name?stringIdentifier. The resource name of the space notification setting. Format: `users/{user}/spaces/{space}/spaceNotificationSetting`.
notificationSetting?enumThe notification setting.
fn get(identifier: string)
Get a spaceNotificationSetting
ArgumentTypeDescription
identifierstringThe name of the spaceNotificationSetting
fn update()
Update spaceNotificationSetting attributes
fn sync()
Sync spaceNotificationSetting state from GCP
04Previous Versions13
2026.05.26.1May 26, 2026
  • Updated: spaces, spaces_messages, spaces_spaceevents, users_sections, users_sections_items
2026.05.25.2May 25, 2026
  • Updated: customemojis, spaces
2026.05.24.1May 24, 2026
  • Updated: customemojis, spaces, spaces_members, spaces_messages, spaces_messages_attachments, spaces_messages_reactions, spaces_spaceevents, users_sections, users_sections_items, users_spaces_spacenotificationsetting
2026.05.21.2May 21, 2026
  • Updated: customemojis, spaces, spaces_members, spaces_messages, spaces_messages_attachments, spaces_messages_reactions, spaces_spaceevents, users_sections, users_sections_items, users_spaces_spacenotificationsetting
2026.05.21.1May 21, 2026
2026.05.20.1May 20, 2026
  • Updated: spaces, spaces_messages, spaces_spaceevents, users_sections, users_sections_items
2026.05.19.2May 19, 2026
2026.05.19.1May 19, 2026
2026.05.18.2May 18, 2026
2026.05.09.1May 9, 2026
  • Updated: spaces_messages, spaces_spaceevents

Modified 1 models

2026.04.23.1Apr 23, 2026
2026.04.08.1Apr 8, 2026
  • Updated: spaces
2026.04.04.1Apr 4, 2026
  • Updated: spaces_messages, spaces_spaceevents
05Stats
A
100 / 100
Downloads
0
Archive size
166.2 KB
Verified by Swamp
  • Has README or module doc2/2earned
  • README has a code example1/1earned
  • README is substantive1/1earned
  • Most symbols documented1/1earned
  • No slow types1/1earned
  • Dependencies pass trust audit2/2earned
  • Has description1/1earned
  • Platform support declared (or universal)2/2earned
  • License declared1/1earned
  • Verified public repository2/2earned
06Platforms
07Labels