iron-bound-designs / exchange-addon-licensing

iThemes Exchange Licensing Add-on
GNU Affero General Public License v3.0
6 stars 2 forks source link

API Info Action #11

Closed TimothyBJacobs closed 9 years ago

TimothyBJacobs commented 9 years ago

This issue describes the /info/ API action. An outline of the API is specified in issue #8.

The info action is used to retrieve information about a license key.

Request

URL: https://www.yourstore.com/itelic-api/meta/ Verb: GET

Success

As long as a license key is used for authentication, this request will always be successful.

Code: 200 OK

{
  "success": true,
  "body": {
    "transaction": 423,
    "product": 231,
    "customer": 32,
    "status": "active",
    "max": 5,
    "activations": {
      "count": 2,
      "count_active": 1,
      "list": [
        {
          "id": 143,
          "activation": "2015-05-22T13:45:56",
          "deactivation": "2015-05-29T01:31:45",
          "location": "http://www.install-location.com",
          "status": "deactivated"
        },
        {
          "id": 147,
          "activation": "2015-05-22T13:45:56",
          "deactivation": "",
          "location": "http://www.other-install-location.com",
          "status": "active"
        }
      ]
    }
  }
}

Fields

TimothyBJacobs commented 9 years ago

Completed.