List all items for an action

Returns a list of the items within the action specified. The items are returned in the order they were originally recorded.

Parameters


No parameters.

Returns


An array of action item objects. Each entry in the array is a separate action item object. All actions contain at least one action item so you should never receive an empty result.

Example request


curl 'https://api.impact.com/Advertisers/<AccountSID>/Actions/1000.4636.401482/Items' \
  -X GET \
  -u '<AccountSID>:<AuthToken>' \
  -H 'Accept: application/json'

Example response


{
  "@page": "1",
  ...
  "ActionItems": [
    {
      "Sku": "12345",
      "ItemName": "Acme Tennis Balls (One Dozen)",
      "Category": "Sports",
      "Quantity": "2",
      "SaleAmount": "19.27",
      "SaleAmountCurrency": "USD",
      "Payout": "0.77",
      "PayoutCurrency": "USD",
      "Rebate": "1.00",
      "RebateCurrency": "USD",
      "AdjustmentDate": "",
      "AdjustmentReason": "",
      "Uri": "/Advertisers/<AccountSID>/Actions/1000.4636.401482/Items/12345"
    },
    {
      ...
    }
  ]
}