CreatorIQ Global Conversion Metrics Configuration API

Global Conversion Metrics Configuration

Operations 3

GET /crm/v1/api/conversions Retrieve Conversion Metrics Configuration #
GET /crm/v1/api/conversion/{conversionMetricId} Retrieve Conversion Metric Configuration by ID #
PATCH /crm/v1/api/conversion/{conversionMetricId} Update Existing Conversion Metric #

Documentation

📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/6e239b2598043-creator-iq-crm-publishers-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/550a4dd4b1c4c-creator-iq-crm-publishers-api-v2
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/23bf95a24efdc-creator-iq-campaign-ap-is
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/1782008e04401-creator-iq-crm-campaigns-api-v2
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/7e7ec9da4e860-creator-iq-reporting-ap-is
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/01ce2c98ffb66-creator-iq-social-account-ap-is
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/eb8bcd088eeca-creator-iq-crm-lists-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/38b54f6883f05-creator-iq-crm-onesheets-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/4959b70086ddd-creator-iq-crm-publishers-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/cd253b6f9f728-creator-iq-divisions-ap-is
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/ff893196191a0-creator-iq-ecommerce-ap-is
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/f8d0b276f1a9d-creator-iq-crm-link-tracking-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/0a94acde695e7-conversion-metrics-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/62c9deaa94659-creator-iq-safe-iq-brand-safety-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/ce6e15986dd02-creator-iq-brand-safety-draft
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/2359b1f62de77-creator-iq-payments-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/052262c05afe6-overview

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/creatoriq-global-conversion-metrics-configuration-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

creatoriq-global-conversion-metrics-configuration-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Global Conversion Metrics Configuration API
  description: "The Conversion Metrics API allows clients to extend CreatorIQ’s link tracking functionality by creating, managing, \nand extracting conversion data.\n\n## Key Use Cases:\n- **Integrate third-party data**: Attach conversion metrics from external platforms (e.g., Google Analytics, Shopify, or internal BI systems) to CreatorIQ tracking links.\n- **Enhance attribution & reporting**: Map conversion events (e.g., purchases, sign-ups) to specific creators, campaigns, and links to improve performance insights.\n- **Extract CIQ metrics**: Retrieve conversion data from CreatorIQ to enrich business processes, build custom dashboards, or power internal analytics.\n"
  termsOfService: https://www.creatoriq.com/legal/terms-of-use
  contact:
    name: CreatorIQ
    url: https://www.creatoriq.com
    email: support@creatoriq.com
  license:
    url: https://www.apache.org/licenses/LICENSE-2.0.html
    name: Apache 2.0
servers:
- url: https://apis.creatoriq.com
  description: Live
security:
- apiKey: []
tags:
- name: Global Conversion Metrics Configuration
  description: Global Conversion Metrics Configuration
paths:
  /crm/v1/api/conversions:
    get:
      tags:
      - Global Conversion Metrics Configuration
      summary: Retrieve Conversion Metrics Configuration
      description: 'Returns a list of defined conversion metrics for the current partner.

        '
      operationId: getConversionMetrics
      responses:
        '200':
          description: Successfully retrieved conversion metrics.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConversionMetricConfigurationCollectionResponse'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
  /crm/v1/api/conversion/{conversionMetricId}:
    get:
      tags:
      - Global Conversion Metrics Configuration
      summary: Retrieve Conversion Metric Configuration by ID
      description: 'Returns the configuration for a specific conversion metric

        '
      operationId: getConversionMetricById
      parameters:
      - $ref: '#/components/parameters/conversionMetricId'
      responses:
        '200':
          description: Successfully retrieved conversion metric configuration.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConversionMetricResponse'
        '404':
          $ref: '#/components/responses/NotFoundError'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    patch:
      tags:
      - Global Conversion Metrics Configuration
      summary: Update Existing Conversion Metric
      description: 'Updates the configuration for a specific conversion metric.

        '
      operationId: updateConversionMetric
      parameters:
      - $ref: '#/components/parameters/conversionMetricId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConversionMetricUpdateRequest'
      responses:
        '200':
          description: Successfully updated the conversion metric.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConversionMetricResponse'
        '400':
          $ref: '#/components/responses/BadRequestError'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '404':
          $ref: '#/components/responses/NotFoundError'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
components:
  responses:
    UnauthorizedError:
      description: Unauthorized - API key missing or invalid.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                examples:
                - Unauthorized
    ForbiddenError:
      description: Forbidden - User does not have access.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                examples:
                - Forbidden
    BadRequestError:
      description: Bad Request - Invalid request format or missing fields.
      content:
        application/json:
          schema:
            type: object
            description: Exception
            properties:
              type:
                type: string
                description: Exception type
                examples:
                - CoreException
              CoreException:
                type: object
                description: Exception information
                properties:
                  code:
                    type: integer
                    description: Exception status code
                    format: int32
                    examples:
                    - 400
                  message:
                    type: string
                    description: Exception message
                    examples:
                    - Some parameters are missing or invalid
            required:
            - type
    NotFoundError:
      description: Not Found - Resource not found.
      content:
        application/json:
          schema:
            type: object
            description: Exception
            properties:
              type:
                type: string
                description: Exception type
                examples:
                - CoreException
              CoreException:
                type: object
                description: Exception information
                properties:
                  code:
                    type: integer
                    description: Exception status code
                    format: int32
                    examples:
                    - 404
                  message:
                    type: string
                    description: Exception message
                    examples:
                    - Supplied ID was not found
            required:
            - type
  schemas:
    ConversionMetric:
      type: object
      properties:
        ConversionMetricId:
          type: integer
          examples:
          - 36942
        PartnerId:
          type: integer
          examples:
          - 11
        ConversionMetricName:
          type: string
          examples:
          - ConversionMetric6
        DisplayName:
          type: string
          examples:
          - Transactions
        DisplayOrder:
          type: integer
          examples:
          - 6
        IsVisible:
          type: integer
          examples:
          - 1
        Type:
          type: string
          examples:
          - Default
        AdditionalInfo:
          type:
          - string
          - 'null'
          examples:
          - null
        TrackingLinkId:
          type: string
          examples:
          - '123'
        ConversionMetricValue:
          type:
          - number
          - 'null'
          examples:
          - 123
        Status:
          type: string
          examples:
          - Auto
        UpdatedAt:
          type: string
          format: date-time
          examples:
          - '2022-01-11 13:47:34'
        UpdatedBy:
          type: string
          examples:
          - app-ui
    ConversionMetricUpdateRequest:
      type: object
      properties:
        DisplayName:
          type: string
          examples:
          - New Conversion Metric
        DisplayOrder:
          type: integer
          examples:
          - 1
        IsVisible:
          type: integer
          examples:
          - 1
    ConversionMetricConfigurationCollectionResponse:
      type: object
      properties:
        type:
          type: string
          examples:
          - ConversionCollection
        href:
          type: string
          examples:
          - https://apis.creatoriq.com/crm/v1/api/conversions
        count:
          type: integer
          examples:
          - 20
        total:
          type: integer
          examples:
          - 725
        page:
          type: integer
          examples:
          - 1
        ConversionCollection:
          type: array
          items:
            $ref: '#/components/schemas/ConversionMetricConfigurationResponse'
    ConversionMetricConfiguration:
      type: object
      properties:
        ConversionMetricId:
          type: integer
          examples:
          - 36942
        PartnerId:
          type: integer
          examples:
          - 11
        ConversionMetricName:
          type: string
          examples:
          - ConversionMetric6
        DisplayName:
          type: string
          examples:
          - Transactions
        DisplayOrder:
          type: integer
          examples:
          - 6
        IsVisible:
          type: integer
          examples:
          - 1
        Type:
          type: string
          examples:
          - Default
        AdditionalInfo:
          type:
          - string
          - 'null'
          examples:
          - null
        UpdatedAt:
          type: string
          format: date-time
          examples:
          - '2022-01-11 13:47:34'
        UpdatedBy:
          type: string
          examples:
          - app-ui
        CreatedAt:
          type: string
          format: date-time
          examples:
          - '2022-01-11 13:47:34'
        CreatedBy:
          type: string
          examples:
          - app-ui
    ConversionMetricConfigurationResponse:
      type: object
      properties:
        type:
          type: string
          examples:
          - ConversionMetric
        href:
          type: string
          examples:
          - https://public-api.creatoriq.com/api/api/conversion/36937
        ConversionMetric:
          $ref: '#/components/schemas/ConversionMetricConfiguration'
    ConversionMetricResponse:
      type: object
      properties:
        type:
          type: string
          examples:
          - ConversionMetric
        href:
          type: string
          examples:
          - https://public-api.creatoriq.com/api/v1/campaign/123/tracking-link/321/conversionMetric/Gross%20Orders
        ConversionMetric:
          $ref: '#/components/schemas/ConversionMetric'
  parameters:
    conversionMetricId:
      name: conversionMetricId
      in: path
      description: The unique identifier for the conversion metric.
      required: true
      schema:
        type: integer
        examples:
        - 36942
      examples:
        default:
          value: 36942
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header