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

# Delete Google Ads conversion mapping

> <Info>This API is in beta. Endpoints, fields, and behavior may still change, so avoid depending on it in production.</Info>

Deletes a conversion mapping.

The Google Ads goal the mapping pointed at is untouched. Only the record tying that goal to an entity write goes away, so nothing about the account's conversion goals changes and you can recreate the mapping with [Create conversion mapping](/api-reference/create-google-ads-conversion-mapping).

Deleting the last enabled mapping on an account stops Base44 treating its conversion events as configured, which [Get launch readiness](/api-reference/get-google-ads-launch-readiness) reflects. Send `is_enabled` as `false` through [Update conversion mapping](/api-reference/update-google-ads-conversion-mapping) instead when you want to keep the record.

<Note>This endpoint accepts a personal API key. Workspace API keys are not authorized for it and are rejected with a 403.</Note>



## OpenAPI

````yaml /developers/references/app-management/app-management-openapi.json delete /api/apps/{app_id}/google-ads/conversion-mappings/{mapping_id}
openapi: 3.1.0
info:
  title: Base44 App Management API
  version: 1.0.0
servers:
  - url: https://app.base44.com
security:
  - ApiKeyAuth: []
paths:
  /api/apps/{app_id}/google-ads/conversion-mappings/{mapping_id}:
    delete:
      summary: Delete Google Ads conversion mapping
      description: >-
        <Info>This API is in beta. Endpoints, fields, and behavior may still
        change, so avoid depending on it in production.</Info>


        Deletes a conversion mapping.


        The Google Ads goal the mapping pointed at is untouched. Only the record
        tying that goal to an entity write goes away, so nothing about the
        account's conversion goals changes and you can recreate the mapping with
        [Create conversion
        mapping](/api-reference/create-google-ads-conversion-mapping).


        Deleting the last enabled mapping on an account stops Base44 treating
        its conversion events as configured, which [Get launch
        readiness](/api-reference/get-google-ads-launch-readiness) reflects.
        Send `is_enabled` as `false` through [Update conversion
        mapping](/api-reference/update-google-ads-conversion-mapping) instead
        when you want to keep the record.


        <Note>This endpoint accepts a personal API key. Workspace API keys are
        not authorized for it and are rejected with a 403.</Note>
      operationId: >-
        delete_conversion_mapping_api_apps__app_id__google_ads_conversion_mappings__mapping_id__delete
      parameters:
        - name: app_id
          in: path
          required: true
          schema:
            type: string
            description: >-
              ID of the app whose Google Ads conversion tracking you want to
              manage.
            title: App Id
          description: >-
            ID of the app whose Google Ads conversion tracking you want to
            manage.
          example: 6820f3a4e7b91d003c45a1f2
        - name: mapping_id
          in: path
          required: true
          schema:
            type: string
            description: >-
              ID of the mapping, as returned in `id` by [List conversion
              mappings](/api-reference/list-google-ads-conversion-mappings).
            title: Mapping Id
          description: >-
            ID of the mapping, as returned in `id` by [List conversion
            mappings](/api-reference/list-google-ads-conversion-mappings).
          example: 68b1c0d4e7b91d003c45a1f7
      responses:
        '200':
          description: The mapping was deleted.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConversionMappingDeleteResponse'
        '401':
          description: Missing or invalid credentials.
        '403':
          description: >-
            You don't have access to this app, the app does not exist, or you
            used a workspace API key. A missing app and an app you cannot reach
            are deliberately the same answer.
        '404':
          description: >-
            The account does not belong to this app, or there is no mapping with
            this ID in your workspace.
components:
  schemas:
    ConversionMappingDeleteResponse:
      properties:
        status:
          type: string
          title: Status
          description: Outcome of the request, which is `deleted` once the mapping is gone.
          example: deleted
      type: object
      required:
        - status
      title: ConversionMappingDeleteResponse
      description: Outcome of deleting a conversion mapping.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key
      description: Personal API key.

````