POST Api/User/GetUserLearningPlansList
Request Information
URI Parameters
None.
Body Parameters
AssessmentLearningPlanRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | string |
None. |
|
| learningPlanId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"userId": "sample string 1",
"learningPlanId": "sample string 2"
}
application/xml, text/xml
Sample:
<AssessmentLearningPlanRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SGACoreApp.Models"> <learningPlanId>sample string 2</learningPlanId> <userId>sample string 1</userId> </AssessmentLearningPlanRequest>
multipart/form-data
Sample:
<AssessmentLearningPlanRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SGACoreApp.Models"><learningPlanId>sample string 2</learningPlanId><userId>sample string 1</userId></AssessmentLearningPlanRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AssessmentLearningPlanResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| AssessmentLearningPlanList | Collection of AssessmentLearningPlan |
None. |
|
| Status | string |
None. |
|
| Message | string |
None. |
|
| ExceptionMessage | string |
None. |
|
| creditBalance | string |
None. |
|
| EmailAddress | string |
None. |
|
| Password | string |
None. |
|
| ViewId | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"AssessmentLearningPlanList": [
{
"LearningPlanId": "sample string 1",
"TitleText": "sample string 2",
"DownloadUrl": "sample string 3"
},
{
"LearningPlanId": "sample string 1",
"TitleText": "sample string 2",
"DownloadUrl": "sample string 3"
}
],
"Status": "sample string 1",
"Message": "sample string 2",
"ExceptionMessage": "sample string 3",
"creditBalance": "sample string 4",
"EmailAddress": "sample string 5",
"Password": "sample string 6",
"ViewId": "sample string 7"
}
application/xml, text/xml
Sample:
<AssessmentLearningPlanResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SGACoreApp.Models">
<EmailAddress>sample string 5</EmailAddress>
<ExceptionMessage>sample string 3</ExceptionMessage>
<Message>sample string 2</Message>
<Password>sample string 6</Password>
<Status>sample string 1</Status>
<ViewId>sample string 7</ViewId>
<creditBalance>sample string 4</creditBalance>
<AssessmentLearningPlanList>
<AssessmentLearningPlan>
<DownloadUrl>sample string 3</DownloadUrl>
<LearningPlanId>sample string 1</LearningPlanId>
<TitleText>sample string 2</TitleText>
</AssessmentLearningPlan>
<AssessmentLearningPlan>
<DownloadUrl>sample string 3</DownloadUrl>
<LearningPlanId>sample string 1</LearningPlanId>
<TitleText>sample string 2</TitleText>
</AssessmentLearningPlan>
</AssessmentLearningPlanList>
</AssessmentLearningPlanResponse>
multipart/form-data
Sample:
<AssessmentLearningPlanResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SGACoreApp.Models"><EmailAddress>sample string 5</EmailAddress><ExceptionMessage>sample string 3</ExceptionMessage><Message>sample string 2</Message><Password>sample string 6</Password><Status>sample string 1</Status><ViewId>sample string 7</ViewId><creditBalance>sample string 4</creditBalance><AssessmentLearningPlanList><AssessmentLearningPlan><DownloadUrl>sample string 3</DownloadUrl><LearningPlanId>sample string 1</LearningPlanId><TitleText>sample string 2</TitleText></AssessmentLearningPlan><AssessmentLearningPlan><DownloadUrl>sample string 3</DownloadUrl><LearningPlanId>sample string 1</LearningPlanId><TitleText>sample string 2</TitleText></AssessmentLearningPlan></AssessmentLearningPlanList></AssessmentLearningPlanResponse>