Skip to main content

List All Machines with Active License Checkouts

The matchmaking API will return a list of all Cargo Spectre devices that have successfully checked out a license using your credentials. You can manually view these records at https://spectre-licensing.com.

HTTPS required

The cloud server is separate from Spectre Dimensioner API calls and uses a different endpoint. Please note that for security, the endpoint MUST be HTTPS and not HTTP.

<Matchmaking/List>

Request

Endpoint

POST https://spectre-licensing.com/matchmaking/list

Desired response format:

Accept: application/json (DEFAULT)

Body

{
"email": "fake@company.com",
"password": "FakePassword123!"
}

Response

{
"matches": [
{
"matchmakingID": 10,
"publicIP": "100.150.162.60",
"localIP": "192.168.1.100:321",
"macAddress": "bbb156d2651f",
"machineName": "Dock 5",
"lastUpdated": "2016-12-18T13:57:14.777059",
"location": null
},
{
"matchmakingID": 403,
"publicIP": "",
"localIP": "127.0.0.1:7100",
"macAddress": "f46d04698d",
"machineName": "Receiving Bay",
"lastUpdated": "2016-11-20T16:21:07.8148707",
"location": "Houston, TX"
},
{
"matchmakingID": 485,
"publicIP": "48.78.4.91",
"localIP": "192.168.1.197:7100",
"macAddress": "742f681c2d",
"machineName": "Departure Scanner",
"lastUpdated": "2016-11-20T15:16:27.4377527",
"location":"JFK"
}
],
"error": null
}