Solaris UID of question
Compliance features (1.0)
https://docs.solarisgroup.com/_mock/api-reference/onboarding/compliance/
Request
Creates an answer to the question specified in the request URL by its ID.
Please note the following:
- You must call this method for each question in a question set.
- If the question has an
answer_type
value ofTEXT_AND_FILES
, then you must upload the documents using POST Create a document for a person or POST Create a document for a business. - Solaris will not review the answers to the questions in the question set until all of them have been marked as
ready_for_review
.
The content of the request.
The answer text collected from the customer in your frontend.
Optional notes that you may add to the answer for Solaris to take into consideration.
An array of Solaris document IDs related to documents provided by the customer for the answer. Only required if the question has an answer_type
value of TEXT_AND_FILES
.
- Mock Server
https://docs.solarisgroup.com/_mock/api-reference/onboarding/compliance/v1/question_set/{question_set_id}/questions/{question_id}/answer
- Payload
- cURL
- Java
- Python
- Node.js
- Go
- Ruby
- PHP
{ "response": "Here is my answer to the question", "partner_notes": "Optional notes", "attachments": [ "4c9464a1a29cbb5cf6090463ef7f49b9cdoc", "876464a1a29cbb5cf6090463ef7f49a6cdoc" ], "ready_for_review": true }
The operation was successful.
UTC timestamp indicating the deadline for answering the question.
The type of answer required from the recipient.
Indicates the allowed document types that the recipient may provide (if the question has an answer_type
value of TEXT_AND_FILES
).
UTC timestamp from when the question was created.
UTC timestamp from when the question was last updated.
{ "id": "1f0130f81d84ed3c75b32c428d5d7d93cqst", "question": "Provide your annual KYC report.", "answer_type": "TEXT_AND_FILES", "deadline": "2022-09-15T11:20:16.840208Z", "allowed_document_types": [ "KYC_REPORT" ], "created_at": "2022-09-15T11:20:16.920885Z", "updated_at": "2022-09-15T11:20:16.920914Z", "answer": { "response": "Here is my annual KYC report", "partner_notes": "Optional partner notes", "attachments": [ … ], "ready_for_review": true } }
- Mock Server
https://docs.solarisgroup.com/_mock/api-reference/onboarding/compliance/v1/question_set/{question_set_id}
- Payload
- cURL
- Java
- Python
- Node.js
- Go
- Ruby
- PHP
No request payload
The operation was successful.
ID of the entity (person or business) to whom the question set is assigned.
The ID of an additional Solaris resource related to the question set (e.g., an identification).
The deadline for answering all questions in the set.
Object containing information about the question set recipient.
Array containing all the questions in the question set.
{ "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": [ { … } ] }