Delete Study - OsiriX-Foundation/KheopsAuthorization GitHub Wiki

Removes a study from the user's Inbox by relinquishes access to all series in the specified study.

URL : /studies/{StudyInstanceUID}

Method : DELETE

Auth Required : Requires an Access Token with the user as the sub claim.

Success Response

If the bearer token has user as the sub.

  • Status : 204 No Content

Error Response

If StudyInstanceUID is not a valid UID

  • Status : 400 Bad Request

If no authentication token is supplied: (Don't forget to return the WWW-authenticate header)

  • Status : 401 Unauthorized

If the bearer token does not have the user as the sub claim.

  • Status : 403 Forbidden

If the user have no access to any study with the given StudyInstanceUID.

  • Status : 404 Not Found