sendKbaAnswers
Mutation
Spinwheel user verification/consent submit KBA answers (step 2 of 2)
Mutation Signature
mutation { sendKbaAnswers(input: SendKbaAnswersInput!): SendKbaAnswersResponse!}Example Request
mutation SendKbaAnswers($input: SendKbaAnswersInput!) { sendKbaAnswers(input: $input) { # Add fields you want to retrieve }}Example Variables:
{ "input": { "reqOrgContactId": "contact-12345", "answers": [ { "questionId": "q1", "answerId": "a1-option2" }, { "questionId": "q2", "answerId": "a2-option1" }, { "questionId": "q3", "answerId": "a3-option4" } ] }}Open in Apollo Studio Explorer →
Click the link above to open this mutation in Apollo Studio Explorer with the query pre-filled. You’ll need to authenticate with your sandbox credentials.
Example Response
{ "data": { "sendKbaAnswers": { "data": { "message": "KBA verification successful" }, "errors": null } }}Arguments
| Argument | Type | Description |
|---|---|---|
input | SendKbaAnswersInput! | Input containing the KBA answers for verification |
Input Types
SendKbaAnswersInput
Input for submitting KBA answers
Required Fields:
| Field | Type | Description |
|---|---|---|
reqOrgContactId | String! | Requesting organization contact ID |
answers | [KbaAnswer!]! | KBA answers |
KbaAnswer
Required Fields:
| Field | Type | Description |
|---|---|---|
questionId | String! | Question ID |
answerId | String! | Answer ID from list of options |
Response Type
Returns: SendKbaAnswersResponse!
SendKbaAnswersResponse
| Field | Type | Description |
|---|---|---|
data | SendKbaAnswersResult | Success message |
errors | [SendKbaAnswersError] | List of error messages |
SendKbaAnswersResult
Result of submitting KBA answers
| Field | Type | Description |
|---|---|---|
message | String | Success or status message |
SendKbaAnswersError
| Field | Type | Description |
|---|---|---|
message | String | KBA requesting questions error message |
Error Types
The response may include the following error types:
SendKbaAnswersError
| Field | Type | Description |
|---|---|---|
message | String | KBA requesting questions error message |
Common Errors
| Error Code | Description | Resolution |
|---|---|---|
VALIDATION_ERROR | Input validation failed | Check required fields and formats |
UNAUTHORIZED | Invalid or expired token | Re-authenticate and retry |
NOT_FOUND | Resource not found | Verify the ID or reference |