GET api/groups/{groupid}/drugprofiles/{drugprofileid}/drugprofilendcs/{id}
Retrieves a single drug profile NDC for a specific group and drug profile.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| groupid |
The group ID associated with the drug profile. |
integer |
Required |
| drugprofileid |
The drug profile ID. |
integer |
Required |
| id |
The ID of the NDC to retrieve. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns the drug profile NDC model if found; otherwise, returns NotFound.
DrugProfileNDCModel| Name | Description | Type | Additional information |
|---|---|---|---|
| NDC |
Gets or sets the NDC associated with the drug profile |
string |
None. |
| EffectiveStartDate |
Gets or sets the Effective Start Date for the associated drug profile |
date |
None. |
| EffectiveEndDate |
Gets or sets the Effective End Date for the associated drug profile |
date |
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
Sample:
{
"url": "sample string 4",
"id": 5,
"ndc": "sample string 2",
"effectiveStartDate": "2026-02-03T21:20:00.0338237-06:00",
"effectiveEndDate": "2026-02-03T21:20:00.0338237-06:00"
}