When an entity has finished processing, you can retrieve the answers from the questionnaire, product, and plan selection logic blocks.
If your flow contains a questionnaire or product and plan logic block using Flow Logic, use this endpoint to retrieve the answers inputted by the entity during the verification process.
Retrieving questionnaire answers
POST/api-entity-questionnaire
Retrieve entity questionnaire, product, and plan selection answers.
Name
Value
Content-Type
multipart/form-data
Authorization
Bearer YOUR_TOKEN
Body
Name
Type
Description
applicantId
string
Unique applicantId generated on entity creation (required)
var axios =require('axios');var FormData =require('form-data');var data =newFormData();data.append('applicantId','4242424242424x424242424242424242');var config = { method:'post',maxBodyLength:Infinity, url:'https://enterprise.personr.co/api/1.1/wf/api-entity-questionnaire', headers: { ...data.getHeaders() }, data : data};axios(config).then(function (response) {console.log(JSON.stringify(response.data));}).catch(function (error) {console.log(error);});
var form =newFormData();form.append("applicantId","4242424242424x424242424242424242");var settings = {"url":"https://enterprise.personr.co/api/1.1/wf/api-entity-questionnaire","method":"POST","timeout":0,"processData":false,"mimeType":"multipart/form-data","contentType":false,"data": form};$.ajax(settings).done(function (response) {console.log(response);});