Skip to main content
POST
/
v1
/
interviews
/
addOne
cURL
curl --request POST \
  --url https://dev.entropi.app/v1/interviews/addOne \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "productID": "<string>",
  "interviewName": "<string>",
  "guidelines": "<string>",
  "userID": "<string>"
}
'
{
  "result": {
    "interviewID": "<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 your product

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

Response

API Response

result
object