Pharmacy
Order
Update Order Edit Configuration

Update Order Edit Configuration

Updates configuration data for an order edit.

Overview

  • Method: PATCH
  • Path: /pharmacy/order/update-order-edit-configuration/<orderEditId>
  • Tags: pharmacy

Parameters

orderEditId (path)

  • Type: string
  • Required: Yes
  • Description: orderEditId parameter

Request Body

  • Content Type: application/json
  • Required: Yes

Fields

FieldTypeRequiredDetails
configurationrecord&lt;string, object&gt;Yes

Responses

200

Successful response

Content Type: application/json

{
  "orderEdit": "string",
  "order_id": "string",
  "created_at": "2024-01-01T00:00:00.000Z",
  "updated_at": "2024-01-01T00:00:00.000Z"
}

400

Bad Request

Content Type: application/json

{
  "error": "string",
  "details": [
    {}
  ]
}

401

Unauthorized

404

Not Found

500

Internal Server Error

Example Usage

curl -X PATCH \
  https://api.pillexa.com/pharmacy/order/update-order-edit-configuration/<orderEditId> \
  -H "Content-Type: application/json" \
  -d '{"example": "data"}'