Skip to main content
POST
/
v1
/
interviews
/
updateOne
cURL
curl --request POST \
  --url https://dev.entropi.app/v1/interviews/updateOne \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "interviewID": "<string>",
  "productID": "<string>",
  "interviewName": "<string>",
  "guidelines": "<string>",
  "userID": "<string>",
  "interviewer": "<string>"
}
'
{
  "result": {
    "interviewID": "<string>",
    "status": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

JSON representation of the Interview with updated fields

interviewID
string
required

Interview ID

productID
string
required

ID of the Product the interview is about

interviewName
string
required

A name for the interview

guidelines
string
required

Interview guidelines, including any insights you hope to extract, specific questiosn you'd like to ask, etc.

userID
string

userID associated with this interview

interviewer
string

ID associated with the Interviewer Agent assigned to this interview. Defaults to Eve from Entropi

Response

API Response

result
object