Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The LAC REST API returns the standard HTTP response codes described in the following table.

Status Code
Header Field
Description
200 OK
?
Activation counters object.
403 Forbidden
?
Invalid or expired token provided.

Example Response

Code Block
HTTP/1.1 200 OK
Content-Type: application/json

{
	"ActivationSubscriptions": [
		{
			"start_date": "2019-08-16",
			"expiration_date": "2020-08-15 23:59:59",
			"next_reset_date": "2019-09-16",
			"activations_left_count": "100",
			"default_count": "100"
		}
	],
	"one_time_activations_left_count": "999",
	"one_time_activations_expiration_date": "2020-08-15 23:59:59"
}

...