POST api/ListProducts

The ListProducts request is both a name-and-string filter AND an identifier-specific list method. As a name-and-string filter list method, the ListProductsRequest accepts the following filters (in the form of a string), and also accepts wildcard (‘%’) filters: ProductNameFilter, IngredientNameFilter As an identifier-specific list method, the ListProductsRequest accepts the following Identifier filters: ProductIdentifierFilter, GenericProductClinicalIdFilter, MarketedProductIdFilter You can also optionally filter your results to return products identified per AGS BEERs Criteria for a specific quality of evidence and/or strength of recommendation rating as potentially inappropriate medications (PIMs) for older adults. You can also use the ‘MaxResults’ option to limit the number of results returned.


Request Information

URI Parameters

None.

Body Parameters

ListProductsRequest
NameDescriptionTypeAdditional information
FilterType The type of identifier or name to filter for. ProductFilterEnum

Required

Filter The identifier or name to filter or search for. string

Required

BeersFilter Optional input filters to return products containing drugs identified per AGS BEERs Criteria for a specific quality of evidence and/or strength of recommendation rating as potentially inappropriate medications (PIMs) for older adults AGSBeersFilter

None.

ReturnIngredientStrengthRouteForm Used to indicate whether to return ingredient strength, route, and form information. boolean

None.

LimitedDistributionId A Limited Distribution ID to filter by. integer

None.

ReturnLimitedDistribution Used to indicate whether to return Limited Distribution information. boolean

None.

MaxResults Limits the number of results returned. A null value means no limit, and everthing will be returned. integer

None.

AccessToken Temporary access token from the GSDD Auth API. Used to validate your license.

Note: Access tokens are temporary and may be invalidated early for various reasons, including—but not limited to—site maintenance and security updates. If a token is invalidated prematurely, simply request new tokens via the AccessToken method in the GSDD Auth API. This is a rather rare occurrence, but should be planned for and handled by the consuming application.
string

Required

Request Formats

application/json, text/json

Sample:
{
  "FilterType": "MarketedProductId",
  "Filter": "%name%",
  "BeersFilter": {
    "AGSBeersStrengthOfRecommendation": "Item2",
    "AGSBeersQualityOfEvidence": "Item2"
  },
  "ReturnIngredientStrengthRouteForm": true,
  "LimitedDistributionId": 1,
  "ReturnLimitedDistribution": true,
  "MaxResults": 10,
  "AccessToken": "T25lX0hhcHB5X0FuZF9TYXRpc2ZpZWRfR1NERF9DdXN0b21lcl9TYW1wbGVfQWNjZXNzVG9rZW4="
}

Response Information

Resource Description

ListProductsResponse
NameDescriptionTypeAdditional information
Products Returns all the product detail output parameters, based on supplied input filters Collection of ProductDetail

None.

Response Formats

application/json, text/json

Sample:
{
  "Products": [
    {
      "ProductId": 1,
      "LimitedDistribution": {
        "Id": 2,
        "Name": "Sample Name text."
      },
      "NDC9": "Sample NDC9 text.",
      "ProductNameLong": "Sample ProductNameLong text.",
      "ProductNameType": "Sample ProductNameType text.",
      "ProductNameShort": "Sample ProductNameShort text.",
      "Marketer": "Sample Marketer text.",
      "LegendStatus": "Sample LegendStatus text.",
      "BrandGenericStatus": "Sample BrandGenericStatus text.",
      "FederalDEAClass": "Sample FederalDEAClass text.",
      "ReplacedByProductId": 3,
      "LicenseType": "Sample LicenseType text.",
      "MarketStatus": "OffMarket",
      "IngredientStrengthRouteFormInfo": [
        {
          "Ingredient": {
            "Id": 4,
            "Name": "Sample Name text."
          },
          "Strength": 1.234,
          "StrengthUnitCode": "Sample StrengthUnitCode text.",
          "PerVolume": 1.234,
          "PerVolumeUnitCode": "Sample PerVolumeUnitCode text.",
          "Route": {
            "Id": 5,
            "Name": "Sample Name text."
          },
          "FDAForm": {
            "Id": 6,
            "Name": "Sample Name text."
          },
          "GSForm": {
            "Id": 7,
            "Name": "Sample Name text."
          }
        },
        {
          "Ingredient": {
            "Id": 8,
            "Name": "Sample Name text."
          },
          "Strength": 1.234,
          "StrengthUnitCode": "Sample StrengthUnitCode text.",
          "PerVolume": 1.234,
          "PerVolumeUnitCode": "Sample PerVolumeUnitCode text.",
          "Route": {
            "Id": 9,
            "Name": "Sample Name text."
          },
          "FDAForm": {
            "Id": 10,
            "Name": "Sample Name text."
          },
          "GSForm": {
            "Id": 11,
            "Name": "Sample Name text."
          }
        }
      ]
    },
    {
      "ProductId": 12,
      "LimitedDistribution": {
        "Id": 13,
        "Name": "Sample Name text."
      },
      "NDC9": "Sample NDC9 text.",
      "ProductNameLong": "Sample ProductNameLong text.",
      "ProductNameType": "Sample ProductNameType text.",
      "ProductNameShort": "Sample ProductNameShort text.",
      "Marketer": "Sample Marketer text.",
      "LegendStatus": "Sample LegendStatus text.",
      "BrandGenericStatus": "Sample BrandGenericStatus text.",
      "FederalDEAClass": "Sample FederalDEAClass text.",
      "ReplacedByProductId": 14,
      "LicenseType": "Sample LicenseType text.",
      "MarketStatus": "OffMarket",
      "IngredientStrengthRouteFormInfo": [
        {
          "Ingredient": {
            "Id": 15,
            "Name": "Sample Name text."
          },
          "Strength": 1.234,
          "StrengthUnitCode": "Sample StrengthUnitCode text.",
          "PerVolume": 1.234,
          "PerVolumeUnitCode": "Sample PerVolumeUnitCode text.",
          "Route": {
            "Id": 16,
            "Name": "Sample Name text."
          },
          "FDAForm": {
            "Id": 17,
            "Name": "Sample Name text."
          },
          "GSForm": {
            "Id": 18,
            "Name": "Sample Name text."
          }
        },
        {
          "Ingredient": {
            "Id": 19,
            "Name": "Sample Name text."
          },
          "Strength": 1.234,
          "StrengthUnitCode": "Sample StrengthUnitCode text.",
          "PerVolume": 1.234,
          "PerVolumeUnitCode": "Sample PerVolumeUnitCode text.",
          "Route": {
            "Id": 20,
            "Name": "Sample Name text."
          },
          "FDAForm": {
            "Id": 21,
            "Name": "Sample Name text."
          },
          "GSForm": {
            "Id": 22,
            "Name": "Sample Name text."
          }
        }
      ]
    }
  ]
}