Update Order Address
This API allows a customer to update an address associated with a specific order. It ensures that order delivery information is accurate and up to date, and tracks any changes made for transparency.
Overview
- Method: PUT
- Path:
/pharmacy/order/update-order-address/<orderId>/<addressId> - Tags: pharmacy
Use Cases
- Update shipping or billing addresses for an order.
- Maintain accurate delivery information to prevent shipping errors.
- Log changes to keep a record of updates made by the customer.
Parameters
No parameters required.
Request Body
No request body required.
Responses
200
Successful response
Content Type: application/json
{}400
Bad Request
Content Type: application/json
{}401
Unauthorized
404
Not Found
500
Internal Server Error
Example Usage
curl -X PUT \
https://api.pillexa.com/pharmacy/order/update-order-address/<orderId>/<addressId> \
-H "Content-Type: application/json" \