Get User Transactions

Offer Wall API Parameters

API parameters pubID, adwallID, and api_key can be found via the "API Details" link next to your profile at Your Offer Wall Profiles.

If you would like us to notify you whenever an offer is completed (lead generated), set up a server postback.

Get User Transactions

Get the list of offer completions and for a specific user; additionally, any transactions you have created manually using the “Create User Transaction” API method (directly adds or deducts credits) will be returned in the list as well.

Response 204 when no transactions exist for subId for adwallId specified.

Response 404 when adwallId doesn't exist for the pubId specified.

GET:

http://adscendmedia.com/adwall/api/publisher/{pubId}/profile/{adwallId}/user/{subid1}/transactions.json

Parameters   Description Type
pubId Required Your publisher ID Number
adwallId Required Your Offer Wall profile ID Number
subid1 Required Your user's primary unique identifier. Maximum length of 60. String

Response 200

Content-Type: application/json

{
  "transactions": [
    {
      "transaction_id": 7,
      "currency_adjustment": 17,
      "offer_id": 31159,
      "offer_name": "Play Castle Clash on your Android!",
      "description": null,
      "timestamp": "2014-09-04T15:51:46-0500"             // Formatted according to ISO 8601.
    }
  ],
  "currency_count": 349.5
}

Continue to Create User Transactions >