Example Usage


http://api.cloudapplicenser.com/v1/license_credits_transactions?token={TOKEN}&appuniqueid={UNIQUEID}&licensekey={LICENSEKEY}&start={START}&results={RESULTS}&timeoffset={TIMEOFFSET}&timeformat={TIMEFORMAT}

Usage Notes

You can request a full list of in-app credit-related transactions by leaving the "start" and "results" parameters empty, or request only a portion of the transactions at a time - useful if you want to paginate or incrementally load a list of transactions. The JSON data returned will include a list of all the transactions requested, in date descending order. Note that any special characters (such as '"' and '\') in the "description" and "reference" fields will be escaped with a backslash, as in the example below.

Example Output


{
  "status": "success",
  "transactions": {
    "transaction": [
      {
        "id": "6",
        "datetime": "4th April 2016 3:25 PM",
        "value": "-3",
        "description": "Points Spent on \"In-App Upgrade\"",
        "reference": ""
      },
      {
        "id": "6",
        "datetime": "4th April 2016 3:28 PM",
        "value": "3",
        "description": "In-App Purchase of Additional Credits",
        "reference": "Payment 0001117273"
      },
      {
        "id": "5",
        "datetime": "1st June 2016 12:45 PM",
        "value": "10",
        "description": "10 Bonus Points Awarded",
        "reference": ""
      }
    ]
  }
}