Perfil do aluno

Perfil do aluno

Required scopes:nutror_my_students_read
GET
https://api.eduzz.com/nutror/v1/students/:id

Path params

id

Id do aluno

Response params (200)

id
string

Id do aluno

name
string

Nome do aluno

email
string

Email do aluno

avatar
url

Avatar do aluno

Status codes

StatusDescrição
200Success
Swagger Logo

Exemplos

1curl --request GET \
2	--url https://api.eduzz.com/nutror/v1/students/12345 \
3	--header 'Accept: application/json' \
4	--header 'Content-Type: application/json' \
5	--header 'authorization: Bearer {{YOUR_ACCESS_TOKEN}}'
Response
1{
2  "id": "9b71e95310b7464bb6ca910ab3036372",
3  "name": "Jão Carlos",
4  "email": "test@test.com",
5  "avatar": null
6}