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

Authorizations

Authorization
string
header
required

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

Body

application/json
email
string
required

Email do aluno

classes
object[]
required
Minimum array length: 1

Response