We’ve migrated our documentation to a new site, which means some URLs have changed.
Audience

/conversion/product/update

Update a conversion product object. (See API authentication for general information how to use these APIs.)

Request

The request object is the conversion product object you want to update (with the changes made). You are not allowed to change the 'siteGroupId', 'siteId', 'type' and 'deleted' fields.

Response

The response object must be always empty.

Examples

$ cx.py /conversion/product/update '{ "id": "777", "name": "My very first conversion product" }'
{}
$ cx.py /conversion/product '{ "id": "777" }'
{
 "siteGroupId": "123",
 "siteId": "444",
 "id": "777",
 "type": "subscription",
 "name": "My very first conversion product",
 "deleted": false
}

Last updated: