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

# List conversion attributions for a Facebook Ads campaign



## OpenAPI

````yaml /openapi.json get /facebook_ads_campaigns/{id}/conversion_attributions
openapi: 3.0.3
info:
  title: Pocketflows API
  version: 0.0.4
servers:
  - url: https://api.pocketflows.com
    description: Production server
security:
  - HttpBasicAuth: []
paths:
  /facebook_ads_campaigns/{id}/conversion_attributions:
    get:
      tags:
        - Facebook ads campaigns
      summary: List conversion attributions for a Facebook Ads campaign
      parameters:
        - in: path
          name: id
          schema:
            type: string
          description: The ID of the campaign
          required: true
      responses:
        '200':
          description: List of conversion attributions for the campaign
          content:
            application/json:
              schema:
                type: object
                properties:
                  conversion_attributions:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Public ID of the conversion attribution
                        amount:
                          type: number
                          description: Conversion amount
                        currency:
                          type: string
                          description: Currency code
                        created_at:
                          type: string
                          description: Timestamp of the conversion
                        customer:
                          nullable: true
                          description: Expanded customer object
                      required:
                        - id
                        - amount
                        - currency
                        - created_at
                        - customer
                    description: List of conversion attributions
                required:
                  - conversion_attributions
components:
  securitySchemes:
    HttpBasicAuth:
      type: http
      scheme: basic

````