# List Destination

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /{version}/api/get/connection/destination:
    post:
      summary: List Destination
      deprecated: false
      description: >-
        Where we send enriched data to improve abandoned cart recovery (3×),
        expand retargeting audiences (+40%), capture more Google conversion
        value (+50%), achieve higher Meta EMQ (9.1/10), and more.
      tags:
        - Public API/Connections
      parameters:
        - name: version
          in: path
          description: v2-4-2
          required: true
          example: v2-4-2
          schema:
            type: string
        - name: ApiKey
          in: header
          description: ''
          required: true
          example: '{{ApiKey}}'
          schema:
            type: string
            default: '{{ApiKey}}'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                platform_type:
                  type: string
                  x-apifox-mock: google
                  description: >-
                    facebook,google,tiktok,ga4,bing,snapchat,klaviyo,impact,shareasale,facebookaudience,googleaudience,cybertargeter,cartsee,omnisend,awin
              x-apifox-orders:
                - platform_type
            example: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      records:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: integer
                            status:
                              type: integer
                              description: '1: active , other  inactive'
                            platform_type:
                              type: string
                              description: google, facebook
                            pixel_id:
                              type: string
                              description: pixel id  or  account id
                            pixel_text:
                              type: string
                              description: pixel name or account name
                            enable_aan:
                              type: boolean
                              description: enabled ann
                            enable_enhanced:
                              type: boolean
                              description: enabled enhanced conversion
                            server_config:
                              type: object
                              properties:
                                checkout_completed:
                                  type: boolean
                                page_viewed:
                                  type: boolean
                                checkout_started:
                                  type: boolean
                                collection_viewed:
                                  type: boolean
                                product_added_to_cart:
                                  type: boolean
                                product_viewed:
                                  type: boolean
                              required:
                                - checkout_started
                                - collection_viewed
                                - product_added_to_cart
                                - product_viewed
                              x-apifox-orders:
                                - checkout_completed
                                - page_viewed
                                - checkout_started
                                - collection_viewed
                                - product_added_to_cart
                                - product_viewed
                              description: server config
                            browser_config:
                              type: object
                              properties: {}
                              x-apifox-orders: []
                              description: browser config
                            configuration:
                              type: object
                              properties:
                                code:
                                  type: string
                                message:
                                  type: string
                              required:
                                - code
                                - message
                              x-apifox-orders:
                                - code
                                - message
                              description: configuration
                          required:
                            - id
                            - status
                            - platform_type
                            - pixel_id
                            - pixel_text
                            - enable_aan
                            - enable_enhanced
                            - server_config
                            - browser_config
                            - configuration
                          x-apifox-orders:
                            - id
                            - status
                            - platform_type
                            - pixel_id
                            - pixel_text
                            - enable_aan
                            - enable_enhanced
                            - server_config
                            - browser_config
                            - configuration
                    required:
                      - records
                    x-apifox-orders:
                      - records
                required:
                  - code
                  - message
                  - data
                x-apifox-orders:
                  - code
                  - message
                  - data
              example:
                code: 1
                message: Service succeed
                data:
                  records:
                    - id: 137
                      status: 1
                      platform_type: impact
                      pixel_id: '123'
                      pixel_text: Attribuly
                      enable_aan: false
                      enable_enhanced: false
                      server_config:
                        checkout_completed: true
                        dm_bill_submitted: true
                        dm_subscription: true
                      browser_config: {}
                      configuration:
                        code: info
                        message: Completed
                    - id: 5
                      status: 0
                      platform_type: facebook
                      pixel_id: '76212'
                      pixel_text: '76212'
                      enable_aan: true
                      enable_enhanced: false
                      server_config:
                        checkout_completed: true
                        dm_form_submitted: true
                        page_viewed: true
                      browser_config: {}
                      configuration:
                        code: info
                        message: Completed
                    - id: 2
                      status: 1
                      platform_type: klaviyo
                      pixel_id: '112'
                      pixel_text: Attribuly
                      enable_aan: false
                      enable_enhanced: false
                      server_config:
                        checkout_started: true
                        collection_viewed: true
                        product_added_to_cart: true
                        product_viewed: true
                      browser_config: {}
                      configuration:
                        code: error
                        message: Flow not configured
          headers: {}
          x-apifox-name: Success
      security: []
      x-apifox-folder: Public API/Connections
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/7934002/apis/api-429980015-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://data-api.test.attribuly.com
    description: test
  - url: https://data.api.attribuly.com
    description: prod
security: []

```
