GET restapi/personal/progressreport/statuses/v1?personSyncKey={personSyncKey}
Gets list of available learning objective statuses.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
personSyncKey |
[Optional] The person sync key. Optional, if not supplied the report is constructed based on a caller of the this api method (gets identity from a authorization information). |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
EntityListOfItslearning.RestApi.Entities.LearningObjectiveProgressReport.ReportAssessmentStatusName | Description | Type | Additional information |
---|---|---|---|
EntityArray | Collection of Itslearning.RestApi.Entities.LearningObjectiveProgressReport.ReportAssessmentStatus |
None. |
|
Total | integer |
None. |
|
CurrentPageIndex | integer |
None. |
|
PageSize | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "EntityArray": [ { "Label": "sample string 1", "StatusType": 2 }, { "Label": "sample string 1", "StatusType": 2 } ], "Total": 1, "CurrentPageIndex": 2, "PageSize": 3 }
application/xml, text/xml
Sample:
<EntityList xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <CurrentPageIndex>2</CurrentPageIndex> <EntityArray> <ReportAssessmentStatus> <Label>sample string 1</Label> <StatusType>2</StatusType> </ReportAssessmentStatus> <ReportAssessmentStatus> <Label>sample string 1</Label> <StatusType>2</StatusType> </ReportAssessmentStatus> </EntityArray> <PageSize>3</PageSize> <Total>1</Total> </EntityList>