GET
/
v1
/
interviews
/
getList
cURL
curl --request GET \
  --url https://dev.entropi.app/v1/interviews/getList \
  --header 'Authorization: Bearer <token>'
{
  "result": [
    {
      "interviewID": "<string>",
      "productID": "<string>",
      "userID": "<string>",
      "interviewName": "<string>",
      "guidelines": "<string>",
      "interviewer": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

productID
string
required

Retrieve interviews associated with this productID

Response

200
application/json

Interview List

The response is of type object.