GET api/unassignedpharmacies?page={page}&pagesize={pagesize}&dateAddedStart={dateAddedStart}&dateAddedEnd={dateAddedEnd}&name={name}&primaryTypeCode={primaryTypeCode}&state={state}&relationshipCode={relationshipCode}&taxonomyCode={taxonomyCode}
Gets all unassigned pharmacies for this company matching the optional filters provided
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| 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 |
| dateAddedStart |
The optional start date the pharmacy was added to use when filtering results (Default set to previous 30 days) |
date |
None. |
| dateAddedEnd |
The optional end date the pharmacy was added to use when filtering results |
date |
None. |
| name |
The optional name to use when filtering results |
string |
None. |
| primaryTypeCode |
The optional primary type code to use when filtering results |
string |
None. |
| state |
The optional state to use when filtering results |
string |
None. |
| relationshipCode |
The optional relationship code to use when filtering results |
string |
None. |
| taxonomyCode |
The optional taxonomy code to use when filtering results |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
A Paged Result Model containing Pharmacy Location Models
PagedResultModelOfvwDataQProvider| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| PageSize | integer |
None. |
|
| Items | Collection of vwDataQProvider |
None. |
|
| TotalRecordCount | integer |
None. |
Response Formats
application/json, text/json, application/json-patch+json
{
"pageNumber": 1,
"pageCount": 2,
"pageSize": 3,
"items": [
{},
{}
],
"totalRecordCount": 4
}