POST api/ListTherapeuticConceptByProduct

Returns all therapeutic concept tree locations in which this product is classified, indicating which market classification(s) the product belongs to. There can be zero, one, or many therapeutic concepts mapped to a product, based on its use in the marketplace.


Request Information

URI Parameters

None.

Body Parameters

ListTherapeuticConceptByProductRequest
NameDescriptionTypeAdditional information
PackageOrProductFilter The package or product identifier to search for. PackageProductIdentifier

Required

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:
{
  "PackageOrProductFilter": {
    "IdType": "NDC11",
    "Id": "12345-6789-01"
  },
  "AccessToken": "T25lX0hhcHB5X0FuZF9TYXRpc2ZpZWRfR1NERF9DdXN0b21lcl9TYW1wbGVfQWNjZXNzVG9rZW4="
}

Response Information

Resource Description

ListTherapeuticConceptByProductResponse
NameDescriptionTypeAdditional information
TherapeuticConcepts A collection of therapeutic concepts or market classifications. Collection of TherapeuticConceptTree

None.

Response Formats

application/json, text/json

Sample:
{
  "TherapeuticConcepts": [
    {
      "TherapeuticConceptTreeId": 1,
      "ConceptName": "Sample ConceptName text.",
      "TherapeuticConceptId": 2,
      "ParentConceptTreeId": [
        3,
        4
      ]
    },
    {
      "TherapeuticConceptTreeId": 5,
      "ConceptName": "Sample ConceptName text.",
      "TherapeuticConceptId": 6,
      "ParentConceptTreeId": [
        7,
        8
      ]
    }
  ]
}