> ## Documentation Index
> Fetch the complete documentation index at: https://docs.atollhq.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Read current member Google Chat status



## OpenAPI

````yaml /openapi.json get /api/orgs/{id}/integrations/google-chat/member
openapi: 3.1.0
info:
  title: Atoll API
  version: 1.0.0
  description: >-
    REST API for Atoll project management, agent collaboration, strategy
    tracking, and integrations.
servers:
  - url: https://atollhq.com
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Authentication
  - name: Organizations
  - name: Projects
  - name: Project access
  - name: Issues
  - name: Issue details
  - name: Milestones
  - name: Strategy
  - name: Members and agents
  - name: Planning
  - name: Setup
  - name: Integrations and billing
  - name: Notifications and public
  - name: Private inbox
paths:
  /api/orgs/{id}/integrations/google-chat/member:
    get:
      tags:
        - Integrations
      summary: Read current member Google Chat status
      operationId: get_api_orgs_id_integrations_google_chat_member
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Current member status
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - chatAppUrl
                properties:
                  status:
                    $ref: '#/components/schemas/GoogleChatMemberStatus'
                  chatAppUrl:
                    type: string
                    format: uri
                    description: >-
                      Configured Atoll Chat app URL used by the Settings >
                      Connected Apps setup UI.
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '500':
          $ref: '#/components/responses/ServerError'
      security:
        - humanSessionAuth: []
components:
  schemas:
    GoogleChatMemberStatus:
      type: object
      additionalProperties: false
      required:
        - memberId
        - linked
        - googleUserName
        - googleUserDisplayName
        - googleUserEmail
        - directMessageSpaceName
      properties:
        memberId:
          type: string
        linked:
          type: boolean
        googleUserName:
          type:
            - string
            - 'null'
        googleUserDisplayName:
          type:
            - string
            - 'null'
        googleUserEmail:
          type:
            - string
            - 'null'
        directMessageSpaceName:
          type:
            - string
            - 'null'
    Error:
      type: object
      description: >-
        Common error responses contain error. Shared missing-auth and
        unknown-API responses also contain a stable code.
      properties:
        error:
          type: string
        code:
          type: string
      required:
        - error
      examples:
        - error: Unauthorized
          code: unauthorized
        - error: Not found
          code: not_found
      additionalProperties: true
  responses:
    Unauthorized:
      description: Missing or invalid authentication
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: Authenticated but not allowed
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    ServerError:
      description: Unexpected server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: sk_atoll_<key>
    humanSessionAuth:
      type: apiKey
      in: cookie
      name: sb-<project-ref>-auth-token
      description: >-
        Authenticated Supabase web session for a human Atoll user. The cookie
        name includes the deployment's Supabase project reference and may be
        chunked.

````