POST /v1/students/archive

Archive Students at once

application/json

Body

Bulk Archive Student Request

  • ids array[string] Required

    List of archive Students ids

Responses

  • 403 application/json

    Not authorized

    Hide response attributes Show response attributes object

    Error schema

    • statusCode number Required

      Status Code

    • messages array[string] Required

      List of error messages

    • exception object

      Exception

  • 404 application/json

    Not found

    Hide response attributes Show response attributes object

    Error schema

    • statusCode number Required

      Status Code

    • messages array[string] Required

      List of error messages

    • exception object

      Exception

  • 204

    Successful operation with no content

POST /v1/students/archive
curl \
 --request POST 'https://classmanager.test/v1/students/archive' \
 --header "Content-Type: application/json" \
 --data '{"ids":["string"]}'
Request examples
{
  "ids": [
    "string"
  ]
}
Response examples (403)
{
  "statusCode": 42.0,
  "messages": [
    "string"
  ],
  "exception": {}
}
Response examples (404)
{
  "statusCode": 42.0,
  "messages": [
    "string"
  ],
  "exception": {}
}