Update a message
Stay organized with collections
Save and categorize content based on your preferences.
Page Summary
-
This guide details how to update existing Google Chat messages (text and cards) using the Google Chat API's
update()method. -
Two update methods are outlined: one for updating messages on behalf of a user and another for updating as the Chat app itself, each requiring specific authentication and scopes.
-
Both methods use the
UpdateMessage()function but differ in the request structure and available functionalities (user updates are limited to text). -
Comprehensive code samples are provided in multiple languages (Node.js, Python, Java, Apps Script) to illustrate message updating with user and app credentials.
-
Before updating, ensure you have a Google Workspace account, a configured Google Cloud Project, installed client libraries, and proper credentials and scopes set up.
This guide explains how to use the
update
method on the Message resource of the Google Chat API to update a text or card
message in a space. Update a message to change message attributes, such as what
it says, or the content of a card. You can also prepend a text message to a
card message, or append a card to a text message.
In the Chat API, a Chat message is represented by the
Message resource.
While Chat users can only send messages that contain text,
Chat apps can use many other messaging features, including
displaying static or interactive user interfaces, collecting information from
users, and delivering messages privately. To learn more about messaging
features available for the Chat API, see the
Google Chat messages overview.
Prerequisites
Node.js
- A Business or Enterprise Google Workspace account with access to Google Chat.
- Set up your environment:
- Create a Google Cloud project.
- Configure the OAuth consent screen.
- Enable and configure the Google Chat API with a name, icon, and description for your Chat app.
- Install the Node.js Cloud Client Library.
- Create access credentials based on how you want to authenticate in your Google Chat API
request:
- To authenticate as a Chat user,
create OAuth client ID
credentials and save the credentials as a JSON file named
credentials.jsonto your local directory. - To authenticate as the Chat app,
create service account
credentials and save the credentials as a JSON file named
credentials.json.
- To authenticate as a Chat user,
create OAuth client ID
credentials and save the credentials as a JSON file named
- Choose an authorization scope based on whether you want to authenticate as a user or the Chat app.
Python
- A Business or Enterprise Google Workspace account with access to Google Chat.
- Set up your environment:
- Create a Google Cloud project.
- Configure the OAuth consent screen.
- Enable and configure the Google Chat API with a name, icon, and description for your Chat app.
- Install the Python Cloud Client Library.
- Create access credentials based on how you want to authenticate in your Google Chat API
request:
- To authenticate as a Chat user,
create OAuth client ID
credentials and save the credentials as a JSON file named
credentials.jsonto your local directory. - To authenticate as the Chat app,
create service account
credentials and save the credentials as a JSON file named
credentials.json.
- To authenticate as a Chat user,
create OAuth client ID
credentials and save the credentials as a JSON file named
- Choose an authorization scope based on whether you want to authenticate as a user or the Chat app.
Java
- A Business or Enterprise Google Workspace account with access to Google Chat.
- Set up your environment:
- Create a Google Cloud project.
- Configure the OAuth consent screen.
- Enable and configure the Google Chat API with a name, icon, and description for your Chat app.
- Install the Java Cloud Client Library.
- Create access credentials based on how you want to authenticate in your Google Chat API
request:
- To authenticate as a Chat user,
create OAuth client ID
credentials and save the credentials as a JSON file named
credentials.jsonto your local directory. - To authenticate as the Chat app,
create service account
credentials and save the credentials as a JSON file named
credentials.json.
- To authenticate as a Chat user,
create OAuth client ID
credentials and save the credentials as a JSON file named
- Choose an authorization scope based on whether you want to authenticate as a user or the Chat app.
Apps Script
- A Business or Enterprise Google Workspace account with access to Google Chat.
- Set up your environment:
- Create a Google Cloud project.
- Configure the OAuth consent screen.
- Enable and configure the Google Chat API with a name, icon, and description for your Chat app.
- Create a standalone Apps Script project, and turn on the Advanced Chat Service.
- In this guide, you must use either user or app authentication. To authenticate as the Chat app, create service account credentials. For steps, see Authenticate and authorize as a Google Chat app.
- Choose an authorization scope based on whether you want to authenticate as a user or the Chat app.
Update a message on behalf of a user
With user authentication, only the text of a message can be updated.
To update a message with user authentication, pass the following in your request:
- Specify the
chat.messagesauthorization scope. - Call the
UpdateMessagemethod. - Pass
messageas an instance ofMessagewith the following:- The
namefield set to the message to update, which includes a space ID and a message ID. - The
textfield set with the new text.
- The
- Pass
updateMaskwith the valuetext.
If the updated message is a card message, then the text prepends to the cards (which continue to display).
Here's how to update a message, or prepend a text message to a card message with user authentication:
Node.js
import{createClientWithUserCredentials}from'./authentication-utils.js'; constUSER_AUTH_OAUTH_SCOPES=[ 'https://www.googleapis.com/auth/chat.messages', ]; // This sample shows how to update a message with user credential asyncfunctionmain(){ // Create a client constchatClient=awaitcreateClientWithUserCredentials( USER_AUTH_OAUTH_SCOPES, ); // Initialize request argument(s) constrequest={ message:{ // Replace SPACE_NAME and MESSAGE_NAME here name:'spaces/SPACE_NAME/messages/MESSAGE_NAME', text:'Updated with user credential!', }, // The field paths to update. Separate multiple values with commas or use `*` // to update all field paths. updateMask:{ // The field paths to update. paths:['text'], }, }; // Make the request constresponse=awaitchatClient.updateMessage(request); // Handle the response console.log(response); } awaitmain();
Python
fromauthentication_utilsimport create_client_with_user_credentials fromgoogle.appsimport chat_v1 as google_chat SCOPES = ["https://www.googleapis.com/auth/chat.messages"] # This sample shows how to update a message with user credential defupdate_message_with_user_cred(): # Create a client client = create_client_with_user_credentials(SCOPES) # Initialize request argument(s) request = google_chat.UpdateMessageRequest( message = { # Replace SPACE_NAME and MESSAGE_NAME here "name": "spaces/SPACE_NAME/messages/MESSAGE_NAME", "text": "Updated with user credential!" }, # The field paths to update. Separate multiple values with commas or use # `*` to update all field paths. update_mask = "text" ) # Make the request response = client.update_message(request) # Handle the response print(response) update_message_with_user_cred()
Java
importcom.google.chat.v1.ChatServiceClient; importcom.google.chat.v1.UpdateMessageRequest; importcom.google.chat.v1.Message; importcom.google.protobuf.FieldMask; // This sample shows how to update message with user credential. publicclass UpdateMessageUserCred{ privatestaticfinalStringSCOPE= "https://www.googleapis.com/auth/chat.messages"; publicstaticvoidmain(String[]args)throwsException{ try(ChatServiceClientchatServiceClient= AuthenticationUtils.createClientWithUserCredentials( ImmutableList.of(SCOPE))){ UpdateMessageRequest.Builderrequest=UpdateMessageRequest.newBuilder() .setMessage(Message.newBuilder() // replace SPACE_NAME and MESSAGE_NAME here .setName("spaces/SPACE_NAME/messages/MESSAGE_NAME") .setText("Updated with user credential!")) .setUpdateMask(FieldMask.newBuilder() // The field paths to update. .addPaths("text")); Messageresponse=chatServiceClient.updateMessage(request.build()); System.out.println(JsonFormat.printer().print(response)); } } }
Apps Script
/** * This sample shows how to update a message with user credential * * It relies on the OAuth2 scope 'https://www.googleapis.com/auth/chat.messages' * referenced in the manifest file (appsscript.json). */ functionupdateMessageUserCred(){ // Initialize request argument(s) // TODO(developer): Replace SPACE_NAME and MESSAGE_NAME here constname="spaces/SPACE_NAME/messages/MESSAGE_NAME"; constmessage={ text:"Updated with user credential!", }; // The field paths to update. Separate multiple values with commas or use // `*` to update all field paths. constupdateMask="text"; // Make the request constresponse=Chat.Spaces.Messages.patch(message,name,{ updateMask:updateMask, }); // Handle the response console.log(response); }
To run this sample, replace the following:
SPACE_NAME: the ID from the space'sname. You can obtain the ID by calling theListSpacesmethod or from the space's URL.MESSAGE_NAME: the ID from the message'sname. You can obtain the ID from the response body returned after creating a message asynchronously with the Chat API, or with the custom name assigned to the message at creation.
The Chat API returns an instance of
Message
that details the message that's updated.
Update a message as the Chat app
With app authentication, both the text and the cards of a message can be updated.
To update a message with app authentication, pass the following in your request:
- Specify the
chat.botauthorization scope. - Call the
UpdateMessagemethod. - Pass
messageas an instance ofMessagewith the following:- The
namefield set to the message to update, which includes a space ID and a message ID. - The
textfield set with the new text if it needs to be updated. - The
cardsV2field set with the new cards if they need to be updated.
- The
- Pass
updateMaskwith the list of fields to updates such astext, andcardsV2.
If the updated message is a card message and text is updated, then the updated text prepends to the cards (which continue to display). If the updated message is a text message and cards are updated, then the updated cards append to the text (which continues to display).
Here's how to update the text and cards of a message with app authentication:
Node.js
import{createClientWithAppCredentials}from'./authentication-utils.js'; // This sample shows how to update a message with app credential asyncfunctionmain(){ // Create a client constchatClient=createClientWithAppCredentials(); // Initialize request argument(s) constrequest={ message:{ // Replace SPACE_NAME and MESSAGE_NAME here name:'spaces/SPACE_NAME/messages/MESSAGE_NAME', text:'Text updated with app credential!', cardsV2:[ { card:{ header:{ title:'Card updated with app credential!', imageUrl: 'https://fonts.gstatic.com/s/i/short-term/release/googlesymbols/info/default/24px.svg', }, }, }, ], }, // The field paths to update. Separate multiple values with commas or use `*` // to update all field paths. updateMask:{ // The field paths to update. paths:['text','cards_v2'], }, }; // Make the request constresponse=awaitchatClient.updateMessage(request); // Handle the response console.log(response); } awaitmain();
Python
fromauthentication_utilsimport create_client_with_app_credentials fromgoogle.appsimport chat_v1 as google_chat # This sample shows how to update a message with app credential defupdate_message_with_app_cred(): # Create a client client = create_client_with_app_credentials() # Initialize request argument(s) request = google_chat.UpdateMessageRequest( message = { # Replace SPACE_NAME and MESSAGE_NAME here "name": "spaces/SPACE_NAME/messages/MESSAGE_NAME", "text": "Text updated with app credential!", "cards_v2" : [{ "card": { "header": { "title": 'Card updated with app credential!', "image_url": 'https://fonts.gstatic.com/s/i/short-term/release/googlesymbols/info/default/24px.svg' }}}] }, # The field paths to update. Separate multiple values with commas or use # `*` to update all field paths. update_mask = "text,cardsV2" ) # Make the request response = client.update_message(request) # Handle the response print(response) update_message_with_app_cred()
Java
importcom.google.apps.card.v1.Card; importcom.google.apps.card.v1.Card.CardHeader; importcom.google.chat.v1.CardWithId; importcom.google.chat.v1.ChatServiceClient; importcom.google.chat.v1.UpdateMessageRequest; importcom.google.chat.v1.Message; importcom.google.protobuf.FieldMask; // This sample shows how to update message with app credential. publicclass UpdateMessageAppCred{ publicstaticvoidmain(String[]args)throwsException{ try(ChatServiceClientchatServiceClient= AuthenticationUtils.createClientWithAppCredentials()){ UpdateMessageRequest.Builderrequest=UpdateMessageRequest.newBuilder() .setMessage(Message.newBuilder() // replace SPACE_NAME and MESSAGE_NAME here .setName("spaces/SPACE_NAME/messages/MESSAGE_NAME") .setText("Text updated with app credential!") .addCardsV2(CardWithId.newBuilder().setCard(Card.newBuilder() .setHeader(CardHeader.newBuilder() .setTitle("Card updated with app credential!") .setImageUrl("https://fonts.gstatic.com/s/i/short-term/release/googlesymbols/info/default/24px.svg"))))) .setUpdateMask(FieldMask.newBuilder() // The field paths to update. .addAllPaths(List.of("text","cards_v2"))); Messageresponse=chatServiceClient.updateMessage(request.build()); System.out.println(JsonFormat.printer().print(response)); } } }
Apps Script
/** * This sample shows how to update a message with app credential * * It relies on the OAuth2 scope 'https://www.googleapis.com/auth/chat.bot' * used by service accounts. */ functionupdateMessageAppCred(){ // Initialize request argument(s) // TODO(developer): Replace SPACE_NAME and MESSAGE_NAME here constname="spaces/SPACE_NAME/messages/MESSAGE_NAME"; constmessage={ text:"Text updated with app credential!", cardsV2:[ { card:{ header:{ title:"Card updated with app credential!", imageUrl: "https://fonts.gstatic.com/s/i/short-term/release/googlesymbols/info/default/24px.svg", }, }, }, ], }; // The field paths to update. Separate multiple values with commas or use // `*` to update all field paths. constupdateMask="text,cardsV2"; // Make the request constresponse=Chat.Spaces.Messages.patch( message, name, { updateMask:updateMask, }, getHeaderWithAppCredentials(), ); // Handle the response console.log(response); }
To run this sample, replace the following:
SPACE_NAME: the ID from the space'sname. You can obtain the ID by calling theListSpacesmethod or from the space's URL.MESSAGE_NAME: the ID from the message'sname. You can obtain the ID from the response body returned after creating a message asynchronously with the Chat API, or with the custom name assigned to the message at creation.
The Chat API returns an instance of
Message
that details the message that's updated.
Update cards asynchronously
In Developer Preview, you can
asynchronously update the cards in a message using the
replaceCards
method. This is useful for updating the content of a card without user
interaction, such as refreshing a link preview or updating the status of a task.
This method works for messages created by the app, including those created on
behalf of a user.
For details, see Create and update cards.
Related topics
- Format a message.
- Delete a message.
- Get details about a message.
- List messages in a space.
- Send a message.
- Search for messages.