# Retrieve the exam result of a student

`GET https://{domain}/api/v1/usuario/resultado_prova/{usuario_email_id}/{item_id}`

Operation ID: `users.exam_result.get` · API v1

Retrieves the latest result of a student in the exam of a lesson.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `usuario_email_id` | path | string | yes | The student, by ID, email or document (CPF). A value that is a valid email is looked up by email; otherwise the digits are matched against the ID and the document. |
| `item_id` | path | integer | yes | The lesson that holds the exam. |

## Responses

### 200

The student and the result.

Body: object.

### 401

The Authorization header is missing, or the key does not exist or was deleted.

Body: HandlerError.

### 404

No route matches the path, for example a non-numeric ID where a number is expected.

Body: HandlerError.

### 409

msg is Usuário não encontrado, Usuário não possui resultado de prova neste item or Prova não encontrada.

Body: Error.

Full schema: https://cademi.dev/openapi/v1.json
