GET restapi/personal/progressreport/statuses/{personId}/v1

Gets list of available learning objective statuses.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
personId

[Required] The person identifier. Required to get a report.

integer

Required

Body Parameters

None.

Response Information

Resource Description

EntityListOfItslearning.RestApi.Entities.LearningObjectiveProgressReport.ReportAssessmentStatus
NameDescriptionTypeAdditional 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>