Add person or business stakeholders to an acceptor application using addPersonStakeholderInput or addBusinessStakeholderInput.
Use one of the following inputs to add a new stakeholder to the application:
addPersonStakeholderInput
addBusinessStakeholderInput
You can add both person and business stakeholders in a single API call. Each stakeholder requires specific information such as ownership percentage, address, and identification details.
Copy
Ask AI
mutation UpdateAcceptorApplication($input: AcceptorApplicationUpdateInput!) { updateAcceptorApplication(input: $input) { acceptorApplication { applicationStatus stakeholders { id ownershipPercentage ... on BusinessStakeholderOutput { businessName } ... on PersonStakeholderOutput { name { firstName lastName } } } errors { ... on Error { message __typename } } } }}