Retrieve multiple sitelicenses
Query for multiple sitelicenses in one request. All sitelicenses must match the APIKEY provided. Results are not paged, so all matching sitelicenses are returned.
Resource URL
https://api.easysoftwarelicensing.com/v1/sitelicenses/multiple |
https://api.easysoftwarelicensing.com/v1/sitelicenses/multiple
Headers
Body
A JSON array is expected in the body of the request.
Examples
Request
POST https://api.easysoftwarelicensing.com/v1/sitelicenses/multiple
HEADERS
ESL-API-Key: apikey
Content-Type: application/json
BODY
["somekey001", "somekey005", "somekey051"] |
POST https://api.easysoftwarelicensing.com/v1/sitelicenses/multiple
HEADERS
ESL-API-Key: apikey
Content-Type: application/json
BODY
["somekey001", "somekey005", "somekey051"]
Response
200 OK
{ "results" : [
{ "deleted" : null,
"disposition" : "",
"domain" : "another.com",
"expiration" : "2013-04-09 00:00:00",
"ipAddress" : "5.5.5.5",
"issueDate" : "2013-03-07 21:58:11",
"licenseKey" : "somekey001",
"licenseeEmail" : "",
"licenseeName" : "",
"renewURL" : "",
"validationMethod" : "LICENSE_EXISTS_NOT_EXPIRED"
},
{ "deleted" : null,
"disposition" : "",
"domain" : "another.com",
"expiration" : null,
"ipAddress" : "127.0.0.1",
"issueDate" : "2013-03-13 21:59:17",
"licenseKey" : "somekey005",
"licenseeEmail" : "",
"licenseeName" : "",
"renewURL" : "",
"validationMethod" : "LICENSE_EXISTS_NOT_EXPIRED"
},
{ "deleted" : null,
"disposition" : "",
"domain" : "tester.com",
"expiration" : null,
"ipAddress" : "",
"issueDate" : "2013-03-15 18:25:14",
"licenseKey" : "somekey051",
"licenseeEmail" : "",
"licenseeName" : "",
"renewURL" : "",
"validationMethod" : "LICENSE_EXISTS_NOT_EXPIRED"
}
]
} |
{ "results" : [
{ "deleted" : null,
"disposition" : "",
"domain" : "another.com",
"expiration" : "2013-04-09 00:00:00",
"ipAddress" : "5.5.5.5",
"issueDate" : "2013-03-07 21:58:11",
"licenseKey" : "somekey001",
"licenseeEmail" : "",
"licenseeName" : "",
"renewURL" : "",
"validationMethod" : "LICENSE_EXISTS_NOT_EXPIRED"
},
{ "deleted" : null,
"disposition" : "",
"domain" : "another.com",
"expiration" : null,
"ipAddress" : "127.0.0.1",
"issueDate" : "2013-03-13 21:59:17",
"licenseKey" : "somekey005",
"licenseeEmail" : "",
"licenseeName" : "",
"renewURL" : "",
"validationMethod" : "LICENSE_EXISTS_NOT_EXPIRED"
},
{ "deleted" : null,
"disposition" : "",
"domain" : "tester.com",
"expiration" : null,
"ipAddress" : "",
"issueDate" : "2013-03-15 18:25:14",
"licenseKey" : "somekey051",
"licenseeEmail" : "",
"licenseeName" : "",
"renewURL" : "",
"validationMethod" : "LICENSE_EXISTS_NOT_EXPIRED"
}
]
}
Recent Comments