Retrieving entity questionnaire answers

When an entity has finished processing, you can retrieve the answers from the custom questionnaire.

If your flow contains a custom questionnaire, 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 answers.

Body

Request

curl --location 'https://enterprise.personr.co/api/1.1/wf/api-entity-questionnaire' \
--form 'applicantId="4242424242424x424242424242424242"'

Response

{
    "status": "success",
    "response": {
        "flowQuestions": [
            "Question 1",
            "Question 2"
        ],
        "flowAnswers": [
            "Answer 1",
            "Answer 2"
        ]
    }
}

Last updated