DELETE
/
v1
/
trace-learn
/
tutor
/
students
/
{studentId}
/
notes
/
{noteId}
TypeScript client
import { TxAgentKitClient } from '@tx-agent-kit/sdk'

const client = new TxAgentKitClient({
  token: process.env.TX_AGENT_KIT_TOKEN
})

const response = await client.traceLearn.deleteTraceLearnTutorStudentNote({
  studentId: process.env.TX_AGENT_KIT_STUDENT_ID ?? "studentId",
  noteId: process.env.TX_AGENT_KIT_NOTE_ID ?? "noteId",
})
{
  "deleted": true
}

Path Parameters

studentId
string
required
noteId
string<uuid>
required

a Universally Unique Identifier

Pattern: ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$

Response

Success

deleted
boolean
required