Skip to main content
DELETE
/
api
/
v1
/
assignment-grader
/
rubric-templates
/
{id}
Delete a rubric template by ID
const url = 'https://studyfetchapi.com/api/v1/assignment-grader/rubric-templates/{id}';
const options = {method: 'DELETE', headers: {'x-api-key': '<api-key>'}, body: undefined};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}

Authorizations

x-api-key
string
header
required

API Key for authentication

Path Parameters

id
string
required

Rubric template ID

Response

200

Rubric template deleted successfully