Pharmacy
Order
Get Compounds

Get Compounds

GET endpoint for /pharmacy/order/get-compounds in pharmacy category

Overview

  • Method: GET
  • Path: /pharmacy/order/get-compounds
  • Tags: pharmacy

Parameters

No parameters required.

Request Body

No request body required.

Responses

200

Successful response

Content Type: application/json

{
  "type": "object",
  "properties": {
    "compounds": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "dosage": {
      "type": "string"
    },
    "instructions": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "compounds",
    "name",
    "created_at",
    "updated_at"
  ]
}

400

Bad Request

Content Type: application/json

{
  "$ref": "#/components/schemas/Error"
}

401

Unauthorized

404

Not Found

500

Internal Server Error

Example Usage

curl -X GET \
  http://localhost:9000/pharmacy/order/get-compounds \
  -H "Content-Type: application/json" \
  

Interactive Testing

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