Use this file to discover all available pages before exploring further.
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 the application, a developer at Clearpath Payments realizes they entered an incorrect Social Security Number for the Maple Street Coffee owner, Alex Chen. They need to update the stakeholder information with the correct SSN before the application can be properly validated.
mutation UpdateAcceptorApplication($input: AcceptorApplicationUpdateInput!) { updateAcceptorApplication(input: $input) { acceptorApplication { applicationStatus stakeholders { id ownershipPercentage ... on PersonStakeholderOutput { id identificationNumber { type last4 } } } } errors { ... on Error { message __typename } } }}