GET api/assessmentSessions/getEOAReportLinkForSession?sessionId={sessionId}&userId={userId}
Get end of assessment (EOA) report link for a session.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| sessionId | integer |
Required |
|
| userId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
AssessmentSessionEOAReportLink| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId |
User Id. |
integer |
None. |
| SessionId |
Assessment Id. |
integer |
None. |
| Expiry |
Link token expiry date. |
date |
None. |
| Token |
Login token for assessment session |
string |
None. |
| Link |
Assessment session link (includes auto-login). |
string |
None. |
| ReturlUrl |
Return Url |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserId": 1,
"SessionId": 2,
"Expiry": "2025-12-15T06:57:16.1108733+00:00",
"Token": "sample string 4",
"Link": "sample string 5",
"ReturlUrl": "sample string 6"
}
application/xml, text/xml
Sample:
<AssessmentSessionEOAReportLink xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <UserId>1</UserId> <SessionId>2</SessionId> <Expiry>2025-12-15T06:57:16.1108733+00:00</Expiry> <Token>sample string 4</Token> <Link>sample string 5</Link> <ReturlUrl>sample string 6</ReturlUrl> </AssessmentSessionEOAReportLink>
