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

# Assign a Facebook Page to a brand

> Assigns one unassigned Page from this login to the given brand. Each Page belongs to exactly one brand. Each brand can connect up to 5 Facebook Pages, a hard cap. Assigning beyond that limit is refused.



## OpenAPI

````yaml /api-reference/openapi.json post /platforms/facebook/logins/{loginId}/pages/{pageId}/assign
openapi: 3.0.0
info:
  description: >-
    Unified social media inbox API. Read and respond to comments, DMs, reviews,
    and mentions across Instagram, Facebook, Threads, Google Business Profile,
    TikTok, LinkedIn, and YouTube through a single REST API. X/Twitter and
    Trustpilot coming soon.
  title: SocialAPI.AI
  contact:
    name: SocialAPI.AI Support
    email: support@social-api.ai
  license:
    name: MIT
  version: '1.0'
servers:
  - url: https://api.social-api.ai/v1
security: []
paths:
  /platforms/facebook/logins/{loginId}/pages/{pageId}/assign:
    post:
      tags:
        - Platforms
      summary: Assign a Facebook Page to a brand
      description: >-
        Assigns one unassigned Page from this login to the given brand. Each
        Page belongs to exactly one brand. Each brand can connect up to 5
        Facebook Pages, a hard cap. Assigning beyond that limit is refused.
      parameters:
        - description: Facebook login (credential) ID
          name: loginId
          in: path
          required: true
          schema:
            type: string
        - description: Platform page ID
          name: pageId
          in: path
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/api_endpoints.AssignPageRequest'
        description: Target brand
        required: true
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.AssignPageResponse'
        '403':
          description: >-
            Brand already has the maximum of 5 Facebook Pages
            (platform.facebook.page_cap)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
        '404':
          description: Unknown login or brand
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
        '409':
          description: Brand connected through a different login
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api_endpoints.AssignPageRequest:
      type: object
      properties:
        brand_id:
          type: string
          example: b7f9...
    api_endpoints.AssignPageResponse:
      type: object
      properties:
        account_id:
          type: string
          example: acc_01J...
        brand_id:
          type: string
        platform_page_id:
          type: string
    api_endpoints.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/api_endpoints.ErrorBody'
    api_endpoints.ErrorBody:
      type: object
      properties:
        code:
          type: string
          example: resource.not_found
        message:
          type: string
          example: Account not found
        meta:
          type: object
          additionalProperties: {}
  securitySchemes:
    BearerAuth:
      description: >-
        Prefix your API key with "Bearer ". Example: `Authorization: Bearer
        sapi_key_...`
      type: apiKey
      name: Authorization
      in: header

````