In addition to modifying and reversing actions, impact.com allows you to modify and reverse the item-level details of an action.
Note
impact.com allows a maximum of 1000 modifications per action. If you need to make further modifications thereafter, contact support.
If you're tracking at the item level (i.e., passing item data when reporting conversions), you can use the API to modify the quantity or reported revenue amount of items within an action.
To modify items in an action, you'll need:
The
ActionId
of the action.The
Reason
for updating the action (when modifying items in action, always submitORDER_UPDATE
).The
Sku
of the item(s) to be modified (can be found when retrieving an action via API).The new
Quantity
value for the item.The new revenue
Amount
value for the item — only include this in the call if this value is changing (e.g., the reported item revenue amount was reported incorrectly).
Once you have all these values, see the example calls below to learn how to modify an item within an action.
| Your impact.com account's API account ID value. Learn how to find this value. |
| Your impact.com account's API authorization token value. Learn how to find this value. |
| The ID value of the action to be modified. |
| The stock-keeping unit value of the item — this can be found when retrieving an action via API. |
| The new quantity value for the item. |
| When reversing or modifying an item, always submit |
| The new revenue amount value for the item. |
If you're tracking at the item-level (i.e., passing item data when reporting conversions), you can use the API to reverse one or more item by setting Quantity
to 0
.
To reverse items in an action, you'll need:
The
ActionId
of the action.The
Reason
for updating the action (when reversing items in action, always submitORDER_UPDATE
).The
Sku
of the item(s) to be reversed (can be found when retrieving an action via API).The new
Quantity
value for the item — in this case,0
Once you have all of these values, see the example call below to learn how to reverse items in an action.
| Your impact.com account's API account ID value. Learn how to find this value. |
| Your impact.com account's API authorization token value. Learn how to find this value. |
| The ID value of the action to be modified. |
| The stock-keeping unit value of the item — this can be found when retrieving an action via API. |
| The new quantity value for the item. |
| When reversing or modifying an item, always submit |