Reverse an Entire Action via API

If you want to reverse an entire action (i.e., zero out the entire commission), use the call below using the ActionId value.

Parameter reference

Parameter
Description

AccountId

Your impact.com account's API account ID value. Learn how to find this valuearrow-up-right.

AuthToken

Your impact.com account's API authorization token value. Learn how to find this valuearrow-up-right.

ActionId

The ID value of the action to be modified.

DispositionCode

The Disposition Code for reversing the action. If you're not using custom disposition codes, submit REJECTED. Learn more about disposition codes.

curl 'https://api.impact.com/Advertisers/{AccountSID}/Actions' \
  -X DELETE \
  -u '{AccountSID}:{AuthToken}' \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -d 'ActionId={ActionId}' \
  -d 'DispositionCode={DispositionCode}'

Last updated

Was this helpful?