> ## 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.

# Brand Social Integration Status

> Every platform the Social surface lists, with connection state.



## OpenAPI

````yaml /openapi.json get /api/v1/brands/{brand_id}/social-integrations/status
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/brands/{brand_id}/social-integrations/status:
    get:
      tags:
        - Brand Social Integrations
      summary: Brand Social Integration Status
      description: Every platform the Social surface lists, with connection state.
      operationId: >-
        brand_social_integration_status_api_v1_brands__brand_id__social_integrations_status_get
      parameters:
        - name: brand_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Brand Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BrandSocialIntegrationStatusItem'
                title: >-
                  Response Brand Social Integration Status Api V1 Brands  Brand
                  Id  Social Integrations Status Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    BrandSocialIntegrationStatusItem:
      properties:
        provider:
          type: string
          title: Provider
        label:
          type: string
          title: Label
        availability:
          type: string
          enum:
            - available
            - coming_soon
          title: Availability
        status:
          type: string
          title: Status
        account_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Account Id
        account_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Account Name
        meta_pages:
          items:
            $ref: '#/components/schemas/BrandSocialPageOption'
          type: array
          title: Meta Pages
        ig_user_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Ig User Id
        ig_username:
          anyOf:
            - type: string
            - type: 'null'
          title: Ig Username
      type: object
      required:
        - provider
        - label
        - availability
        - status
      title: BrandSocialIntegrationStatusItem
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    BrandSocialPageOption:
      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: BrandSocialPageOption
      description: >-
        One selectable Facebook Page (sanitized — never the page 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

````