latestOpenAPI 3.0.12026-08-101936151.3 KB

61701b027c74

Questions and Answers

List questions in a question set

Returns an array containing all of the questions in a question set (specified in the request URL by its ID).

get/v1/question_set/{question_set_id}

Path parameters

question_set_idstring required

Solaris UID of question set

Response

The operation was successful.

idstring

ID of the question set.

entity_idstring

ID of the entity (person or business) to whom the question set is assigned.

context_idstring

The ID of an additional Solaris resource related to the question set (e.g., an identification).

deadlinestring date-time

The deadline for answering all questions in the set.

Example response

{
  "id": "b4897de4ad4142faa0a7822b84edf597cqset",
  "entity_id": "1fa130f81d84ed3c75b32c428d5d7d93cper",
  "context_id": "1fa130f81d84ed3c75b32c428d5d7d93ccnt",
  "description": "some description",
  "deadline": "2023-12-07T00:00:00Z",
  "recipient": {
    "recipient_id": "1fa130f81d84ed3c75b32c428d5d7d93cper",
    "recipient_type": "CUSTOMER"
  },
  "questions": [
    {
      "id": "1f0130f81d84ed3c75b32c428d5d7d93cqst",
      "question": "Provide your current address.",
      "answer_type": "TEXT_AND_FILES",
      "deadline": "2022-09-15T11:20:16.840208Z",
      "allowed_document_types": [
        "KYC_REPORT"
      ]
    }
  ]
}