Use one of the following inputs to update an existing stakeholder:
updatePersonStakeholderInput
updateBusinessStakeholderInput
You must include the stakeholder’s id in the update input.
ScenarioAfter submitting his application, Ben realizes he mistyped his business
partner’s Social Security Number. He needs to update the stakeholder
information with the correct SSN before the application can be properly
validated.
Copy
Ask AI
mutation UpdateAcceptorApplication($input: AcceptorApplicationUpdateInput!) { updateAcceptorApplication(input: $input) { acceptorApplication { applicationStatus stakeholders { id ownershipPercentage ... on PersonStakeholderOutput { id identificationNumber { type last4 } } } } errors { ... on Error { message __typename } } }}