| Code | Description |
|---|---|
| 404 | Couldn't find tool provider with 'id'=':tool_provider_id' |
| 401 | You are not authorized to access this endpoint |
| 423 | Tool provider destruction is locked while Lti Resources in use are linked to it. |
{
'examble_request_params': {
'id': 1,
'nonce': 1527500365,
'timestamp': 1527500365052,
'signature': '8aac70c9906ad0812f4fbc34617322f985b4ac978cec861724f142cb572b88ff'
},
'example_succesful_response': {},
'example_error_response_with_lti_resources': {
'error': {
'open_exam': [
[
{
'id': 2,
'name': 'exam with lti resources example'
}
]
]
}
}
}
| Param name | Description |
|---|---|
|
id required |
ID of the tool provider. Validations:
|
|
timestamp required |
Timestamp of the request in milliseconds. Validations:
|
|
nonce required |
Random number unique between the api calls made in the previous 24 hours. Validations:
|
|
signature required |
HMAC sha256 hex encoded hash, using the user secret_key as key, of the query string build with all the other parameters in the format ‘name=value’ joined by ‘?’ and ordered alphabethically by name. Do not use encoding scheme on the values you use to calculate the string Validations:
|