Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request DELETE \
--url https://trainertwin.com/api/v1/assignments/{assignmentId} \
--header 'x-api-key: <api-key>'const options = {method: 'DELETE', headers: {'x-api-key': '<api-key>'}};
fetch('https://trainertwin.com/api/v1/assignments/{assignmentId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://trainertwin.com/api/v1/assignments/{assignmentId}"
headers = {"x-api-key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"error": "Resource not found"
}{
"error": "Resource not found"
}{
"error": "Resource not found"
}curl --request DELETE \
--url https://trainertwin.com/api/v1/assignments/{assignmentId} \
--header 'x-api-key: <api-key>'const options = {method: 'DELETE', headers: {'x-api-key': '<api-key>'}};
fetch('https://trainertwin.com/api/v1/assignments/{assignmentId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://trainertwin.com/api/v1/assignments/{assignmentId}"
headers = {"x-api-key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"error": "Resource not found"
}{
"error": "Resource not found"
}{
"error": "Resource not found"
}