Get Pharmacy Location
Retrieve details for a pharmacy location.
Overview
- Method: GET
- Path:
/pharmacy/location/get-location/<locationId> - Tags: pharmacy
Parameters
locationId (path)
- Type:
string - Required: Yes
- Description: locationId parameter
Request Body
No request body required.
Responses
200
Successful response
Content Type: application/json
{
"id": "string",
"name": "string",
"phone": "string",
"email": "user@example.com",
"timezone": "string",
"isActive": true,
"capabilities": true,
"coldChain": true,
"shippingMethods": "string",
"controlledSubstances": true
}400
Bad Request
Content Type: application/json
{}401
Unauthorized
404
Not Found
500
Internal Server Error
Example Usage
curl -X GET \
https://api.pillexa.com/pharmacy/location/get-location/<locationId> \
-H "Content-Type: application/json" \