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.

Table 1. GET /system/eula_acceptances/{id} resource details
MIME Type

application/json

Table 2. GET /system/eula_acceptances/{id} request parameter details
Parameter Type Optionality Data Type MIME Type Description

id

path

Required

Number (Integer)

text/plain

The ID of the EULA Acceptance to retrieve.

Table 3. GET /system/eula_acceptances/{id} response codes
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
}