Get details about a user's thread read state

This guide explains how to use the get() method on the ThreadReadState resource of the Google Chat API to get details about a user's read state within a message thread. To get the read state of a message in a space, see Get details about a user's space read state.

The ThreadReadState resource is a singleton resource that represents details about a specified user's last read message in a Google Chat message thread.

Prerequisites

Node.js

Get the calling user's thread read state

To get details about a user's read state within a message thread, include the following in your request:

  • Specify the chat.users.readstate or chat.users.readstate.readonly authorization scope.
  • Call the GetThreadReadState() method, passing the name of the thread read state to get which includes a user ID or alias and a space ID. Getting thread read state only supports getting the read state of the calling user, which can be specified by setting one of the following:
    • The me alias. For example, users/me/spaces/SPACE/threads/THREAD/threadReadState.
    • The calling user's Workspace email address. For example, users/user@example.com/spaces/SPACE/threads/THREAD/threadReadState.
    • The calling user's user ID. For example, users/USER/spaces/SPACE/threads/THREAD/threadReadState.

The following example gets the calling user's thread read state:

Node.js

chat/client-libraries/cloud/get-thread-read-state-user-cred.js
import {createClientWithUserCredentials} from './authentication-utils.js';

const USER_AUTH_OAUTH_SCOPES = ['https://www.googleapis.com/auth/chat.users.readstate.readonly'];

// This sample shows how to get the thread read state for a space and calling user
async function main() {
  // Create a client
  const chatClient = await createClientWithUserCredentials(USER_AUTH_OAUTH_SCOPES);

  // Initialize request argument(s)
  const request = {
    // Replace SPACE_NAME and THREAD_NAME here
    name: 'users/me/spaces/SPACE_NAME/threads/THREAD_NAME/threadReadState'
  };

  // Make the request
  const response = await chatClient.getThreadReadState(request);

  // Handle the response
  console.log(response);
}

main().catch(console.error);

To run this sample, replace the following:

  • SPACE_NAME: the ID from the space's name. You can obtain the ID by calling the ListSpaces() method or from the space's URL.
  • THREAD_NAME: the ID from the thread's name. 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 Google Chat API gets the specified thread read state and returns an instance of ThreadReadState.