GET /system/eula_acceptances/{id}
Retrieves an individual EULA Acceptance by id.
Retrieves an individual EULA Acceptance resource by id. All users are able to call this endpoint, but will only see the EULA Acceptance resource that corresponds to them.
MIME Type |
---|
application/json |
Parameter | Type | Optionality | Data Type | MIME Type | Description |
---|---|---|---|---|---|
id |
path |
Required |
Number (Integer) |
text/plain |
The ID of the EULA Acceptance to retrieve. |
HTTP Response Code | Unique Code | Description |
---|---|---|
200 |
The EULA Acceptance was retrieved. |
|
404 |
79302002 |
The EULA Acceptance id does not exist. |
500 |
79302001 |
There was an unexpected error looking for the requested EULA Acceptance. |
Response Description
A specific EULA Acceptance for the requested ID.
- id - Long - The ID of the acceptance DTO.
- accepted_eula - Boolean - Indicates if the EULA has been accepted. If this value is false, access to the system is restricted.
Response Sample
{
"accepted_eula": true,
"id": 42
}