# list all customer level details 

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /{version}/api/get/ad-analysis/all-conversion-detail-list:
    post:
      summary: 'list all customer level details '
      deprecated: false
      description: >-
        - Use when you need to get the detailed customer name, order number of
        all campaigns

        - Rate limits: 5 requests per second.

        - version: v2-4-2.
      tags:
        - Public API/Attribution/Ads
      parameters:
        - name: version
          in: path
          description: ''
          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:
                start_date:
                  type: string
                  description: >-
                    The start date range of the event in ISO format, e.g.
                    1970-01-01, the time zone should be consistent with your
                    store settings.
                end_date:
                  type: string
                  description: >-
                    The end date of the event in ISO format, e.g. 1970-01-01,
                    the time zone should be consistent with your store
                    settings.If you want to see the data for 1970-01-01, please
                    enter 1970-01-02.
                model:
                  type: string
                  description: >-
                    - First click

                    - Last click

                    - Linear

                    - Position

                    - Full Impact

                    - For other values, please refer to the “name” section in
                    the API documentation
                    (https://developer.attribuly.com/api-429980012)
                goal:
                  type: string
                  description: Conversion goal name.
                page:
                  type: integer
                  description: The min is 1.
                page_size:
                  type: integer
                  description: The range is 1 to 100.
              required:
                - start_date
                - end_date
                - model
                - goal
                - page
                - page_size
              x-apifox-orders:
                - start_date
                - end_date
                - model
                - goal
                - page
                - page_size
            example:
              start_date: string
              end_date: string
              model: first
              goal: purchase
              page: 1
              page_size: 20
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      total:
                        type: integer
                      page_size:
                        type: integer
                      records:
                        type: array
                        items:
                          type: object
                          properties:
                            customer:
                              type: string
                              description: Customer name.
                            new_customer:
                              type: string
                              description: >-
                                A value of 'Yes' or 'No' indicates whether the
                                customer is a new one.
                            conversion_credit:
                              type: number
                            order:
                              type: string
                              description: Order name.
                            attributed_value:
                              type: number
                            conversion_date:
                              type: string
                              description: The time zone is your store settings.
                            campaign_id:
                              type: string
                              description: The ID of ad campaign.
                            campaign_name:
                              type: string
                              description: The name of ad campaign
                            set_id:
                              type: string
                              description: The ID of ad set.
                            set_name:
                              type: string
                              description: The name of ad set.
                            ad_id:
                              type: string
                              description: The ID of ad.
                            ad_name:
                              type: string
                              description: The name of ad.
                          x-apifox-orders:
                            - campaign_id
                            - campaign_name
                            - set_id
                            - set_name
                            - ad_id
                            - ad_name
                            - customer
                            - new_customer
                            - conversion_credit
                            - order
                            - attributed_value
                            - conversion_date
                          required:
                            - campaign_id
                            - campaign_name
                            - set_id
                            - set_name
                            - ad_id
                            - ad_name
                    required:
                      - total
                      - page_size
                      - records
                    x-apifox-orders:
                      - total
                      - page_size
                      - records
                required:
                  - code
                  - message
                  - data
                x-apifox-orders:
                  - code
                  - message
                  - data
              example:
                code: 1
                message: Service succeed
                data:
                  total: 1
                  page_size: 20
                  records:
                    - campaign_id: '23855481405970436'
                      campaign_name: Accurate delivery-General budget
                      set_id: '23855481406410436'
                      set_name: Accurate delivery-S
                      ad_id: '23855481406720436'
                      ad_name: Accurate delivery-Ad
                      customer: Cherruvue Elese
                      new_customer: 'Yes'
                      conversion_credit: 0.5
                      order: X1508-A
                      attributed_value: 37.63
                      conversion_date: '2025-10-21 04:18:59'
          headers: {}
          x-apifox-name: Success
      security: []
      x-apifox-folder: Public API/Attribution/Ads
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/7934002/apis/api-427723196-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://data-api.test.attribuly.com
    description: test
  - url: https://data.api.attribuly.com
    description: prod
security: []

```
