GET api/headquarterpharmacylocationdeltas/{id}
Retrieves the details of a specific pharmacy headquarter location delta by its sequence number. This endpoint is particularly used for obtaining information about changes or updates at a specific pharmacy headquarter location identified by the sequence number.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
The sequence number of the pharmacy headquarter location delta to retrieve. This is a unique identifier that corresponds to a specific change or update record. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
An IHttpActionResult containing the pharmacy headquarter location delta details if found, NotFound if no matching record is found, or InternalServerError in case of an unexpected exception.
HeadquarterPharmacyLocationDeltaModelName | Description | Type | Additional information |
---|---|---|---|
PharmacyLocationNo |
The unique ID that identifies a pharmacy location record |
integer |
None. |
AuditDate |
The date of the change to the Headquarter Pharmacy Location record |
date |
None. |
TransactionType |
This is the type of transaction that was performed on the record. I for Insert, U for Update, D for Delete |
string |
None. |
OldPharmacyHeadquarterNo |
The ID of the Pharmacy Headquarter Location record before the change |
integer |
None. |
NewPharmacyHeadquarterNo |
The ID of the Pharmacy Headquarter Location record after the change |
integer |
None. |
Url |
Gets or sets the link representing a link back to the resource |
string |
None. |
ID |
Gets or sets the identifier for the resource |
integer |
None. |
Response Formats
application/json, text/json, application/json-patch+json
{ "url": "sample string 2", "id": 3, "pharmacyLocationNo": 1, "auditDate": "2025-05-30T21:48:41.3864773-05:00", "transactionType": "sample string 1", "oldPharmacyHeadquarterNo": 1, "newPharmacyHeadquarterNo": 1 }