GET api/ProgramRightsInfoList/{rightsGroupId}?languageId={languageId}
Gets a list of ProgramRightsInfo that matches the specified criteria
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| rightsGroupId | The rightsGroupId. |
Define this parameter in the request URI. |
| languageId | The languageId. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
[
{
"categoryName": "sample string 1",
"editAllowed": true,
"formName": "sample string 3",
"programName": "sample string 4",
"programNumber": 5,
"startAllowed": true
},
{
"categoryName": "sample string 1",
"editAllowed": true,
"formName": "sample string 3",
"programName": "sample string 4",
"programNumber": 5,
"startAllowed": true
},
{
"categoryName": "sample string 1",
"editAllowed": true,
"formName": "sample string 3",
"programName": "sample string 4",
"programNumber": 5,
"startAllowed": true
}
]
application/xml, text/xml
Sample:
<ArrayOfProgramRightsInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UNIT4.Multivers.API.BL.Base.Info">
<ProgramRightsInfo>
<CategoryName>sample string 1</CategoryName>
<EditAllowed>true</EditAllowed>
<FormName>sample string 3</FormName>
<ProgramName>sample string 4</ProgramName>
<ProgramNumber>5</ProgramNumber>
<StartAllowed>true</StartAllowed>
</ProgramRightsInfo>
<ProgramRightsInfo>
<CategoryName>sample string 1</CategoryName>
<EditAllowed>true</EditAllowed>
<FormName>sample string 3</FormName>
<ProgramName>sample string 4</ProgramName>
<ProgramNumber>5</ProgramNumber>
<StartAllowed>true</StartAllowed>
</ProgramRightsInfo>
<ProgramRightsInfo>
<CategoryName>sample string 1</CategoryName>
<EditAllowed>true</EditAllowed>
<FormName>sample string 3</FormName>
<ProgramName>sample string 4</ProgramName>
<ProgramNumber>5</ProgramNumber>
<StartAllowed>true</StartAllowed>
</ProgramRightsInfo>
</ArrayOfProgramRightsInfo>