GET api/networkpharmacyheadquarterdeltas?lastModifiedAfter={lastModifiedAfter}&initialNetworkPharmacyHeadquarterDeltaID={initialNetworkPharmacyHeadquarterDeltaID}&page={page}&pagesize={pagesize}
Retrieves a paginated list of Network Pharmacy Headquarter Delta records. This endpoint allows filtering by last modification date or a specific initial sequence number (the initialNetworkPharmacyHeadquarterDeltaID). Either lastModifiedAfter or initialNetworkPharmacyHeadquarterDeltaID must be provided.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| lastModifiedAfter |
The date to filter records that were modified after this date. If null, the filter is not applied. If 'initialNetworkPharmacyHeadquarterDeltaID' is provided, this parameter is ignored. |
date |
None. |
| initialNetworkPharmacyHeadquarterDeltaID |
The initial sequence number to start filtering from. If provided, 'lastModifiedAfter' is ignored. |
integer |
None. |
| page |
The page number of the result set to return. Defaults to 1. |
integer |
Default value is 1 |
| pagesize |
The number of records per page. Defaults to 100, with a maximum allowed value of 1000. |
integer |
Default value is 100 |
Body Parameters
None.
Response Information
Resource Description
A 'PagedResultModel' of 'NetworkPharmacyHeadquarterDeltaModel' which includes the paginated list of network pharmacy headquarter delta records along with pagination details.
PagedResultModelOfNetworkPharmacyHeadquarterDeltaModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| PageSize | integer |
None. |
|
| Items | Collection of NetworkPharmacyHeadquarterDeltaModel |
None. |
|
| TotalRecordCount | integer |
None. |
Response Formats
application/json, text/json, application/json-patch+json
{
"pageNumber": 1,
"pageCount": 2,
"pageSize": 3,
"items": [
{
"url": "sample string 2",
"id": 3,
"networkPharmacyHeadquarterSeqNo": 1,
"auditDate": "2025-12-09T20:11:47.6984342-06:00",
"transactionType": "sample string 1",
"networkNo": 1,
"pharmacyHeadquarterNo": 1
},
{
"url": "sample string 2",
"id": 3,
"networkPharmacyHeadquarterSeqNo": 1,
"auditDate": "2025-12-09T20:11:47.6984342-06:00",
"transactionType": "sample string 1",
"networkNo": 1,
"pharmacyHeadquarterNo": 1
}
],
"totalRecordCount": 4
}