Statement Resource
Manages learner statements.
sendStatement
Sends a statement to the LRS.
Examples
Example 1: Send Basic Statement
Example 2: Send Embedded Attachment Statement
This example requires CryptoJS to generate a sha2 of the attachment data and convert the array buffer to a word array.
Parameters
Parameter
Type
Required
Description
statement
true
The statement you wish to send to the LRS.
attachments
ArrayBuffer[]
false
An array of attachment data converted to ArrayBuffer
.
Returns
This method returns an AxiosPromise
with the success data
containing a string array of statement IDs if successful, or if unsuccessful the rejection contains an error message.
sendStatements
Sends multiple statements to the LRS.
Example 1: Send Basic Statements
Example 2: Send Embedded Attachment Statements
This example requires CryptoJS to generate a sha2 of the attachment data and convert the array buffer to a word array.
Parameters
Parameter
Type
Required
Description
statements
true
The statements you wish to send to the LRS.
attachments
ArrayBuffer[]
false
An array of attachment data converted to ArrayBuffer
.
Returns
This method returns an AxiosPromise
with the success data
containing a string array of statement IDs if successful, or if unsuccessful the rejection contains an error message.
getStatement
To receive a single statement, you must use the getStatement
method and pass the statement ID in the query. Optionally, you can provide additional parameters to the query to change the data format returned from the LRS.
Examples
Example 1: Get Basic Statement
Example 2: Get Embedded Attachment Statement
Parameters
Parameter
Type
Required
Description
statementId
string
true
The identifier of the statement to request.
attachments
boolean
false
Whether to return the attachment(s) associated with the statement, if any.
format
string
false
What human readable names and descriptions are included in the statement.
exact
format returns the statements exactly as they were received by the LRS.ids
only ids are returned with none of the human readable descriptions.canonical
format requests the LRS to return its own internal definitions of objects, rather than those provided in the statement.
Returns
This method returns an AxiosPromise
with the success data
containing the Statement of the supplied statementId
.
When getting a statement with attachments: true
, the success data
is returned as an array. The first array item is of type Statement
, and the following are of type Part
and are the attachments supplied with the statement.
getStatements
To receive an array of statements based upon a query, you must use the getStatements
method. See the GetStatementsQuery interface for a full list of ways to create your query.
Example
Parameters
Parameter
Type
Required
Description
agent
Agent
false
The agent to filter the query by.
verb
string
false
The verb identifier to filter the query by.
activity
string
false
The activity identifier to filter the query by.
registration
string
false
The registration to filter the query by.
related_activities
boolean
false
Whether to include any activity in the statement as part of the filter to query by.
related_agents
boolean
false
Whether to include any agent in the statement as part of the filter to query by.
since
Timestamp (ISOString)
false
Filters only statements after the given Timestamp.
until
Timestamp (ISOString)
false
Filters only statements before the given Timestamp.
limit
number
false
Number of statements to return.
ascending
boolean
false
Determines whether to return the statements in ascending order.
attachments
boolean
false
Determines whether to return the attachments for the resulting statements.
Returns
This method returns an AxiosPromise
with the success data
containing a StatementsResponse object.
When getting statements with attachments: true
, the success data
is returned as an array. The first array item is of type StatementsResponse
, and the following are of type Part
and are the attachments supplied with the statement.
getMoreStatements
To be used in conjunction with getStatements
. If the more
property is populated on your initial request, more data is available. Send the value of the more
property to this method to get the next page of statements.
Example
Parameters
Parameter
Type
Required
Description
more
string
true
The more
property passed from the getStatements
/getMoreStatements
query response.
Returns
This method returns an AxiosPromise
with the success data
containing a StatementsResponse object or an Array containing StatementsResponse
and Part
if the original query has attachments: true
. When working in TypeScript you may need to cast your result.data
return type explicitly as StatementsResponse
or StatementsResponseWithAttachments
.
voidStatement
Voids a statement in the LRS by the supplied Actor.
Example
Parameters
Parameter
Type
Required
Description
actor
true
The Actor who is voiding the statement e.g. an administrator.
statementId
string
true
The statement to be voided.
Returns
This method returns an AxiosPromise
with the success data
containing an array of statement ID strings of the void statement.
voidStatements
Voids multiple statements in the LRS by the supplied Actor.
Example
Parameters
Parameter
Type
Required
Description
actor
true
The Actor who is voiding the statement e.g. an administrator.
statementIds
string[]
true
The statements to be voided.
Returns
This method returns an AxiosPromise
with the success data
containing an array of statement ID strings of the void statements.
getVoidedStatement
To receive a single voided statement, you must use the getVoidedStatement
method and pass the original statement ID in the query (not the original statement's void statement id). Optionally, you can provide additional parameters to the query to change the data format returned from the LRS.
Example
Parameters
Parameter
Type
Required
Description
voidedStatementId
string
true
The identifier of the voided statement to request.
attachments
boolean
false
Whether to return the attachment(s) associated with the voided statement, if any.
format
string
false
What human readable names and descriptions are included in the voided statement.
exact
format returns the statements exactly as they were received by the LRS.ids
only ids are returned with none of the human readable descriptions.canonical
format requests the LRS to return its own internal definitions of objects, rather than those provided in the statement.
Returns
This method returns an AxiosPromise
with the success data
containing the Statement of the supplied voidedStatementId
.
When getting a statement with attachments: true
, the success data
is returned as an array. The first array item is of type Statement
, and the following are of type Part
and are the attachments supplied with the statement.
Last updated