Skip to main content
DELETE
/
interview
/
{interviewId}
Delete an interview
curl --request DELETE \
  --url https://public.api.micro1.ai/interview/{interviewId} \
  --header 'x-api-key: <api-key>'
{
  "status": true,
  "message": "Interview deleted successfully"
}

Authorizations

x-api-key
string
header
required

API key to access the API

Path Parameters

interviewId
string
required

ID of the interview to delete

Response

Successful response

Response for deleting an interview

status
boolean

Whether the request was successful

Example:

true

message
string

The message for the response

Example:

"Interview deleted successfully"

I