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

# Retrieve teamspace invite

> Get a pending invite for in a teamspace.



## OpenAPI

````yaml get /organization/teamspaces/{teamspace_id}/invites/{invite_id}
openapi: 3.0.3
info:
  version: 0.1.1
  title: Datagrid API
  description: Datagrid API
servers:
  - url: https://api.datagrid.com/v1
security:
  - BearerAuth: []
paths:
  /organization/teamspaces/{teamspace_id}/invites/{invite_id}:
    get:
      tags:
        - Teamspace Invites
      summary: Retrieve teamspace invite
      description: Get a pending invite for in a teamspace.
      operationId: Invite.getTeamspaceInvite
      parameters:
        - name: teamspace_id
          in: path
          required: true
          schema:
            type: string
          description: The ID of the teamspace
        - name: invite_id
          in: path
          required: true
          schema:
            type: string
          description: The ID of the invite
      responses:
        '200':
          description: Invite for the user in the teamspace
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamspaceInvite'
        '429':
          description: >-
            Rate limit exceeded. The request has been throttled because the rate
            limit for this endpoint has been reached. Check the `Retry-After`
            response header and retry after the specified number of seconds.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RateLimitError'
      x-codeSamples:
        - lang: JavaScript
          source: >-
            import Datagrid from 'datagrid-ai';


            const client = new Datagrid({
              apiKey: process.env['DATAGRID_API_KEY'], // This is the default and can be omitted
            });


            const teamspaceInvite = await
            client.organization.teamspaces.invites.retrieve(
              'teamspace_id',
              'invite_id',
            );


            console.log(teamspaceInvite.id);
        - lang: Python
          source: |-
            import os
            from datagrid_ai import Datagrid

            client = Datagrid(
                api_key=os.environ.get("DATAGRID_API_KEY"),  # This is the default and can be omitted
            )
            teamspace_invite = client.organization.teamspaces.invites.retrieve(
                invite_id="invite_id",
                teamspace_id="teamspace_id",
            )
            print(teamspace_invite.id)
components:
  schemas:
    TeamspaceInvite:
      type: object
      description: Represents a invite for a user in a teamspace
      required:
        - email
        - permissions
        - status
        - id
      properties:
        id:
          type: string
          description: The ID of the invite. Only present if the invite is pending.
        email:
          type: string
          format: email
          description: The email address of the user invited
        permissions:
          $ref: '#/components/schemas/TeamspaceInvitePermissions'
        accepted_at:
          type: string
          nullable: true
          format: date-time
          description: >-
            The date and time the user accepted the invite. Only present if the
            invite is accepted.
        status:
          type: string
          enum:
            - pending
            - accepted
          description: Whether the user has accepted the invite
    RateLimitError:
      type: object
      description: >-
        Returned when the rate limit is exceeded. Rate limits are enforced per
        teamspace, endpoint path, and HTTP method over a 60-second sliding
        window. Each endpoint may have its own limit — check the
        X-RateLimit-Limit response header for the effective value.
      required:
        - error
        - message
        - retryable
        - status_code
      properties:
        status_code:
          type: integer
          description: The HTTP status code (429).
        statusCode:
          type: integer
          deprecated: true
          description: Deprecated. Use status_code instead.
        error:
          type: string
          enum:
            - rate_limit_exceeded
          description: The error code identifying this as a rate limit error.
        message:
          type: string
          description: A human-readable error message.
        mitigation:
          type: string
          description: Suggested action to resolve the error.
        retryable:
          type: boolean
          description: Whether the request can be retried after a delay.
        details:
          type: object
          properties:
            reason:
              type: string
              description: A detailed explanation of why the rate limit was exceeded.
    TeamspaceInvitePermissions:
      type: object
      description: Represents the permissions assigned to a user in a teamspace
      required:
        - role
      properties:
        role:
          type: string
          enum:
            - admin
            - member
            - agents-only
            - agent-specific
          description: >-
            The role to assign to the user in the teamspace. Available roles:
            admin, member, agents-only, agent-specific
        agent_ids:
          nullable: true
          type: array
          items:
            type: string
          description: >-
            The IDs of the agents that the user has access to, if the role is
            agent-specific
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````