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>"
}
]
}
}Returns a single invite by linkID
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>"
}
]
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The linkID to retrieve
API Response
Show child attributes
ID of the Invite
ID of the interview associated with the invite
ID of the product associated with the invite
ID of the organization provisioning the invite
Status of the invite. unopened/opened/started/complete
DateTime string representation of when the invite was provisioned
Date string of when the interview was completed. Visible if status is completed