GET PlanCare2Api/DynamicData/ProjectsPCDProductDescription?projectId={projectId}&productId={productId}&contractId={contractId}&referenceDate={referenceDate}
Fetch productdescription based on the Project/product information in PCD. This function does apply to the PCD contracttype
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| projectId |
The Base64 encoded identifier of the project to obtain the product description for |
string |
Required |
| productId |
The identifier of the product to obtain the product description for |
integer |
Required |
| contractId |
The identifier of the contract to obtain the product description for |
integer |
Required |
| referenceDate |
The date to obtain the product description for |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
Displays the combined description of a product as defined by the Project/Product information in PCD
Collection of ProjectsPCDProductDescriptionResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Productdescription |
The description of the product based on the PCD Project/Product information |
string |
- |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "1",
"Productdescription": "sample string 1"
},
{
"$ref": "1"
}
]
application/xml, text/xml
Sample:
<ArrayOfDynamicDataController.ProjectsPCDProductDescriptionResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Controllers">
<DynamicDataController.ProjectsPCDProductDescriptionResult>
<Productdescription>sample string 1</Productdescription>
</DynamicDataController.ProjectsPCDProductDescriptionResult>
<DynamicDataController.ProjectsPCDProductDescriptionResult>
<Productdescription>sample string 1</Productdescription>
</DynamicDataController.ProjectsPCDProductDescriptionResult>
</ArrayOfDynamicDataController.ProjectsPCDProductDescriptionResult>