Update 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>
Changes a conversion mapping.
Send only the fields you want to change. A field you leave out keeps its current value, and so does a field you send as null, so clear a field by sending an empty string rather than null. There is no account_id parameter here, because the mapping already knows which account it belongs to.
Turning is_enabled off is how you stop Base44 counting the mapping when it decides the account's conversion events are configured, without losing the mapping itself.
<Warning>A mapping does not report conversions on its own. Nothing fires a conversion when the mapped entity is written. The app has to fire it in the browser with gtag('event', 'conversion', ...), or you report it from the server with Upload conversions.</Warning>
<Note>This endpoint accepts a personal API key. Workspace API keys are not authorized for it and are rejected with a 403.</Note>
<Warning>The response includes fields beyond the ones documented here. Don't rely on undocumented response fields, as they can change at any time. Send only the fields documented here. Other request fields are not supported and their behavior can change.</Warning>
Path parameters
ID of the app whose Google Ads conversion tracking you want to manage.
ID of the app whose Google Ads conversion tracking you want to manage.
ID of the mapping, as returned in id by List conversion mappings.
ID of the mapping, as returned in id by List conversion mappings.
Request body
Example request
{
"entity_name": "Order",
"trigger_action": "create",
"conversion_type": "PURCHASE",
"conversion_action_id": "7654321",
"value_field": "total_price",
"currency_field": "currency",
"id_field": "order_number",
"is_enabled": true
}Response
The mapping after the change.
Example response
{
"id": "68b1c0d4e7b91d003c45a1f7",
"account_id": "68b1c0d4e7b91d003c45a1f8",
"entity_name": "Order",
"trigger_action": "create",
"conversion_type": "PURCHASE",
"conversion_action_id": "7654321",
"value_field": "total_price",
"currency_field": "currency",
"id_field": "order_number",
"is_enabled": true,
"created_date": "2026-08-25T11:20:00Z",
"updated_date": "2026-08-25T14:05:00Z"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.