GET api/GetFormOtherBenefitsList?LanguageId={LanguageId}&FormId={FormId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| LanguageId | integer |
Required |
|
| FormId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of FormBenefitsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OtherBenefitId | integer |
None. |
|
| BenefitDescription | string |
None. |
|
| HasBenefit | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"OtherBenefitId": 1,
"BenefitDescription": "sample string 1",
"HasBenefit": true
},
{
"OtherBenefitId": 1,
"BenefitDescription": "sample string 1",
"HasBenefit": true
}
]
application/xml, text/xml
Sample:
<ArrayOfFormBenefitsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cybersoft.Primero.OnlineFRE.APIs.Models.FormApplication">
<FormBenefitsModel>
<BenefitDescription>sample string 1</BenefitDescription>
<HasBenefit>true</HasBenefit>
<OtherBenefitId>1</OtherBenefitId>
</FormBenefitsModel>
<FormBenefitsModel>
<BenefitDescription>sample string 1</BenefitDescription>
<HasBenefit>true</HasBenefit>
<OtherBenefitId>1</OtherBenefitId>
</FormBenefitsModel>
</ArrayOfFormBenefitsModel>