GET restapi/personal/element/embedded/{elementId}/report/v1

Request Information

URI Parameters

NameDescriptionTypeAdditional information
elementId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Itsolutions.Itslearning.Web.RestApi.Personal.Element.Responses.OwnReportResponse
NameDescriptionTypeAdditional information
ParticipantReport

Current person report.

Itsolutions.Itslearning.Web.RestApi.Personal.Element.Models.ParticipantReportV2

None.

FeedbackPerson

Current person report feedback person.

Itsolutions.Itslearning.Web.RestApi.Personal.ContentAreaSettings.Models.ParticipantItemModel

None.

AssessmentByPerson

Current person report assessment person.

Itsolutions.Itslearning.Web.RestApi.Personal.ContentAreaSettings.Models.ParticipantItemModel

None.

Response Formats

application/json, text/json

Sample:
{
  "ParticipantReport": {
    "PersonId": 1,
    "Submitted": "2026-05-31T15:06:56Z",
    "AssessmentStatusItemId": 1,
    "AssessmentItemId": 1,
    "AssessmentByPersonId": 1,
    "AssessmentDateTime": "2026-05-31T15:06:56Z",
    "RawFeedback": "sample string 2",
    "Feedback": "sample string 3",
    "FeedbackByPersonId": 1,
    "FeedbackDateTime": "2026-05-31T15:06:56Z",
    "Score": 1.1,
    "TaskStatus": "Unknown"
  },
  "FeedbackPerson": {
    "PersonId": 1,
    "FullName": "sample string 2",
    "ExtraInformation": "sample string 3",
    "PictureUrl": "sample string 4"
  },
  "AssessmentByPerson": {
    "PersonId": 1,
    "FullName": "sample string 2",
    "ExtraInformation": "sample string 3",
    "PictureUrl": "sample string 4"
  }
}

application/xml, text/xml

Sample:
<OwnReportResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Itsolutions.Itslearning.Web.RestApi.Personal.Element.Responses">
  <AssessmentByPerson xmlns:d2p1="http://schemas.datacontract.org/2004/07/Itsolutions.Itslearning.Web.RestApi.Personal.ContentAreaSettings.Models">
    <d2p1:ExtraInformation>sample string 3</d2p1:ExtraInformation>
    <d2p1:FullName>sample string 2</d2p1:FullName>
    <d2p1:PersonId>1</d2p1:PersonId>
    <d2p1:PictureUrl>sample string 4</d2p1:PictureUrl>
  </AssessmentByPerson>
  <FeedbackPerson xmlns:d2p1="http://schemas.datacontract.org/2004/07/Itsolutions.Itslearning.Web.RestApi.Personal.ContentAreaSettings.Models">
    <d2p1:ExtraInformation>sample string 3</d2p1:ExtraInformation>
    <d2p1:FullName>sample string 2</d2p1:FullName>
    <d2p1:PersonId>1</d2p1:PersonId>
    <d2p1:PictureUrl>sample string 4</d2p1:PictureUrl>
  </FeedbackPerson>
  <ParticipantReport xmlns:d2p1="http://schemas.datacontract.org/2004/07/Itsolutions.Itslearning.Web.RestApi.Personal.Element.Models">
    <d2p1:AssessmentByPersonId>1</d2p1:AssessmentByPersonId>
    <d2p1:AssessmentDateTime>2026-05-31T15:06:56Z</d2p1:AssessmentDateTime>
    <d2p1:AssessmentItemId>1</d2p1:AssessmentItemId>
    <d2p1:AssessmentStatusItemId>1</d2p1:AssessmentStatusItemId>
    <d2p1:Feedback>sample string 3</d2p1:Feedback>
    <d2p1:FeedbackByPersonId>1</d2p1:FeedbackByPersonId>
    <d2p1:FeedbackDateTime>2026-05-31T15:06:56Z</d2p1:FeedbackDateTime>
    <d2p1:PersonId>1</d2p1:PersonId>
    <d2p1:RawFeedback>sample string 2</d2p1:RawFeedback>
    <d2p1:Score>1.1</d2p1:Score>
    <d2p1:Submitted>2026-05-31T15:06:56Z</d2p1:Submitted>
    <d2p1:TaskStatus>Unknown</d2p1:TaskStatus>
  </ParticipantReport>
</OwnReportResponse>