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

# Import Meta catalogs

> Import all WABA Meta catalogs as local catalogs.



## OpenAPI

````yaml /api-reference/voxys_catalog_swagger.json post /api/v1/accounts/{account_id}/catalogs/import_meta
openapi: 3.1.0
info:
  title: Voxys Connect - Catalog & Products
  description: >-
    Manage product catalogs: manual products, CSV import, store sync
    (Salla/Zid/Shopify/WooCommerce/Magento/Odoo) and Meta/WhatsApp catalog
    publishing.
  version: 1.0.0
  contact:
    email: support@voxys.ai
  license:
    name: MIT License
    url: https://opensource.org/licenses/MIT
servers:
  - url: https://connect.voxys.ai
security:
  - userApiKey: []
tags:
  - name: Catalog & Products
    description: Catalogs, products, store + Meta sync, and WhatsApp publishing.
paths:
  /api/v1/accounts/{account_id}/catalogs/import_meta:
    post:
      tags:
        - Catalog & Products
      summary: Import Meta catalogs
      description: Import all WABA Meta catalogs as local catalogs.
      operationId: importMetaCatalogs
      parameters:
        - $ref: '#/components/parameters/account_id'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                inbox_id:
                  type: integer
                  description: WhatsApp inbox id
      responses:
        '200':
          description: Successful response
        '401':
          $ref: '#/components/responses/unauthorized'
        '404':
          $ref: '#/components/responses/not_found'
        '422':
          $ref: '#/components/responses/unprocessable'
components:
  parameters:
    account_id:
      name: account_id
      in: path
      required: true
      schema:
        type: integer
      description: Numeric ID of the account
  responses:
    unauthorized:
      description: Authentication failed – invalid or missing api_access_token
    not_found:
      description: Resource not found
    unprocessable:
      description: Unprocessable entity – validation errors
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
  securitySchemes:
    userApiKey:
      type: apiKey
      in: header
      name: api_access_token
      description: >-
        All API requests must include the `api_access_token` header with a valid
        agent or administrator token.

````