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

# Integration Status

> List connected integrations for a team.



## OpenAPI

````yaml /openapi.json get /api/v1/teams/{team_id}/integrations/status
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/teams/{team_id}/integrations/status:
    get:
      tags:
        - Team Integrations
      summary: Integration Status
      description: List connected integrations for a team.
      operationId: integration_status_api_v1_teams__team_id__integrations_status_get
      parameters:
        - name: team_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Team Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IntegrationStatusItem'
                title: >-
                  Response Integration Status Api V1 Teams  Team Id 
                  Integrations Status Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    IntegrationStatusItem:
      properties:
        credential_id:
          type: string
          title: Credential Id
        provider:
          type: string
          title: Provider
        status:
          type: string
          title: Status
        account_name:
          type: string
          title: Account Name
        account_id:
          type: string
          title: Account Id
        extra_data:
          additionalProperties: true
          type: object
          title: Extra Data
        linkedin_targets:
          items:
            $ref: '#/components/schemas/LinkedInTargetOption'
          type: array
          title: Linkedin Targets
        linkedin_author_urn:
          anyOf:
            - type: string
            - type: 'null'
          title: Linkedin Author Urn
        meta_pages:
          items:
            $ref: '#/components/schemas/MetaPageOption'
          type: array
          title: Meta Pages
      type: object
      required:
        - credential_id
        - provider
        - status
        - account_name
        - account_id
      title: IntegrationStatusItem
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    LinkedInTargetOption:
      properties:
        urn:
          type: string
          title: Urn
        name:
          type: string
          title: Name
        kind:
          type: string
          enum:
            - personal
            - organization
          title: Kind
      type: object
      required:
        - urn
        - name
        - kind
      title: LinkedInTargetOption
      description: One selectable LinkedIn post target (sanitized — never a token).
    MetaPageOption:
      properties:
        page_id:
          type: string
          title: Page Id
        name:
          type: string
          title: Name
        has_instagram:
          type: boolean
          title: Has Instagram
          default: false
      type: object
      required:
        - page_id
        - name
      title: MetaPageOption
      description: >-
        One selectable Facebook Page (sanitized — never the page_access_token).


        ``has_instagram`` flags whether the Page has a linked IG business
        account,

        so the picker can hint that choosing it also connects Instagram.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````