Skip to main content
DELETE
/
api
/
v1
/
assignment-grader
/
delete
/
{id}
Delete a graded assignment by ID
const options = {method: 'DELETE', headers: {'x-api-key': '<api-key>'}};

fetch('https://studyfetchapi.com/api/v1/assignment-grader/delete/{id}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "success": true,
  "message": "Assignment deleted successfully"
}

Documentation Index

Fetch the complete documentation index at: https://www.studyfetch.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

API Key for server-to-server authentication. Resolves to the owning organization.

Path Parameters

id
string
required

Assignment grader document ID

Response

Assignment grader deleted successfully

success
boolean
Example:

true

message
string
Example:

"Assignment deleted successfully"