Skip to main content
DELETE
/
classe
/
{id}
/
remove-student
Remover aluno da turma
curl --request DELETE \
  --url https://api.plataformainsight.com.br/v1/classe/{id}/remove-student \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>"
}
'
{
  "status": "<string>",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Código da turma

Body

application/json
email
string
required

Email do aluno

Response