GET
/
v1
/
invites
/
getOne
cURL
curl --request GET \
  --url https://dev.entropi.app/v1/invites/getOne \
  --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

The linkID to retrieve

Response

200
application/json

API Response

The response is of type object.