Clinician
Macros
Unassign From Clinician

Unassign From Clinician

GET endpoint for /clinician/macros/unassign-from-clinician in clinician category

Overview

  • Method: GET
  • Path: /clinician/macros/unassign-from-clinician
  • Tags: clinician

Parameters

No parameters required.

Request Body

No request body required.

Responses

200

Successful response

Content Type: application/json

{
  "type": "object",
  "properties": {
    "order": {
      "type": "string"
    },
    "display_id": {
      "type": "number"
    },
    "status": {
      "type": "string"
    }
  },
  "required": [
    "order",
    "display_id",
    "status"
  ]
}

400

Bad Request

Content Type: application/json

{
  "type": "object",
  "properties": {
    "error": {
      "type": "string"
    },
    "details": {
      "type": "array",
      "items": {
        "type": "object"
      }
    }
  },
  "required": [
    "error",
    "details"
  ]
}

401

Unauthorized

404

Not Found

500

Internal Server Error

Example Usage

curl -X GET \
  http://localhost:9000/clinician/macros/unassign-from-clinician \
  -H "Content-Type: application/json" \
  

Interactive Testing

You can test this endpoint interactively in the Swagger UI (opens in a new tab).