GET
/
v1
/
invites
/
getList
cURL
curl --request GET \
  --url https://dev.entropi.app/v1/invites/getList \
  --header 'Authorization: Bearer <token>'
{
  "result": [
    {
      "linkID": "<string>",
      "interviewID": "<string>",
      "productID": "<string>",
      "orgID": "<string>",
      "userInfo": {
        "email": "<string>",
        "name": "<string>",
        "occupation": "<string>"
      },
      "status": "<string>",
      "timestamp": "<string>",
      "completed_on": "<string>",
      "conversation": [
        {
          "role": "<string>",
          "content": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

interviewID
string

Retrieve invites associated with this interviewID

productID
string

Retrieve invites associated with this productID

Response

200
application/json

Invite List

The response is of type object.