GET api/networks/{networkid}/networkpharmacyheadquarters?page={page}&pagesize={pagesize}&lastModifiedAfter={lastModifiedAfter}
Gets a collection of network pharmacy headquarter resources for a network
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| networkid |
Network identifier |
integer |
Required |
| page |
1-based index identifying the page # of results to return (optional, 1 by default) |
integer |
Default value is 1 |
| pagesize |
The number of records to return per page (optional, 25 by default, max 100) |
integer |
Default value is 25 |
| lastModifiedAfter |
This parameter is obsolete and is no longer functional. It will be removed completely in a future release |
date |
None. |
Body Parameters
None.
Response Information
Resource Description
A list of network pharmacy headquarter details
PagedResultModelOfNetworkPharmacyHeadquarterConsolidatedModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| PageSize | integer |
None. |
|
| Items | Collection of NetworkPharmacyHeadquarterConsolidatedModel |
None. |
|
| TotalRecordCount | integer |
None. |
Response Formats
application/json, text/json, application/json-patch+json
Sample:
{
"pageNumber": 1,
"pageCount": 2,
"pageSize": 3,
"items": [
{
"url": "sample string 6",
"id": 7,
"pharmacyHeadquarterNo": 1,
"pharmacyHeadquarterName": "sample string 2",
"pharmacyHeadquarterInactive": true,
"planNo": 1,
"planName": "sample string 3",
"networkNo": 1,
"networkName": "sample string 4",
"comment": "sample string 5"
},
{
"url": "sample string 6",
"id": 7,
"pharmacyHeadquarterNo": 1,
"pharmacyHeadquarterName": "sample string 2",
"pharmacyHeadquarterInactive": true,
"planNo": 1,
"planName": "sample string 3",
"networkNo": 1,
"networkName": "sample string 4",
"comment": "sample string 5"
}
],
"totalRecordCount": 4
}