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>",
  "userID": "<string>",
  "interviewName": "<string>",
  "guidelines": "<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

The body is of type object.

Response

200
application/json

API Response

The response is of type object.