--- title: verificationSessionResolve - Payments Apps API description: |- Resolves an open verification session. After the `verificationSessionResolve` mutation completes on a given verification session, any `verificationSessionReject` mutation attempts will fail. Subsequent `verificationSessionResolve` mutation attempts will succeed, but the `Details` argument will be ignored. api_version: 2025-10 api_name: payments-apps type: mutation api_type: graphql source_url: html: https://shopify.dev/docs/api/payments-apps/latest/mutations/verificationSessionResolve md: https://shopify.dev/docs/api/payments-apps/latest/mutations/verificationSessionResolve.md --- # verification​Session​Resolve mutation Requires `write_payment_sessions` access scope. Resolves an open verification session. After the `verificationSessionResolve` mutation completes on a given verification session, any `verificationSessionReject` mutation attempts will fail. Subsequent `verificationSessionResolve` mutation attempts will succeed, but the `Details` argument will be ignored. ## Arguments * authentication [Verification​Session​Three​DSecure​Authentication](https://shopify.dev/docs/api/payments-apps/latest/input-objects/VerificationSessionThreeDSecureAuthentication) The 3D Secure authentication data from the partner. Must be present if and only if the Redirect mutation has been called and the payment method is credit card. * id [ID!](https://shopify.dev/docs/api/payments-apps/latest/scalars/ID) required The verification session ID. * payment​Details [Verification​Session​Payment​Details​Input](https://shopify.dev/docs/api/payments-apps/latest/input-objects/VerificationSessionPaymentDetailsInput) The payment details used to process the verification. * network​Transaction​Id [String](https://shopify.dev/docs/api/payments-apps/latest/scalars/String) Deprecated *** ## Verification​Session​Resolve​Payload returns * user​Errors [\[Verification​Session​User​Error!\]!](https://shopify.dev/docs/api/payments-apps/latest/objects/VerificationSessionUserError) non-null The list of errors that occurred from executing the mutation. * verification​Session [Verification​Session](https://shopify.dev/docs/api/payments-apps/latest/objects/VerificationSession) The updated verification session. *** ## Examples * ### verificationSessionResolve reference ## Mutation Reference ```graphql mutation verificationSessionResolve($id: ID!, $authentication: VerificationSessionThreeDSecureAuthentication, $paymentDetails: VerificationSessionPaymentDetailsInput) { verificationSessionResolve(id: $id, authentication: $authentication, paymentDetails: $paymentDetails) { userErrors { field message } verificationSession { # VerificationSession fields } } } ``` ## Input ```json { "id": "gid://shopify//10079785100", "authentication": { "authenticationData": { "transStatus": "Y", "transStatusReason": "", "authenticationFlow": "FRICTIONLESS", "version": "V2_3", "chargebackLiability": "MERCHANT" }, "partnerError": "PROCESSING_ERROR" }, "paymentDetails": { "card": { "type": "AMERICAN_EXPRESS", "descriptor": "", "bin": "", "last4": "", "dynamicLast4": "", "expirationMonth": "", "expirationYear": "", "cardHolderName": "", "billingAddress": {}, "wallet": "APPLE_PAY", "issuerName": "", "networkTransactionId": "" } } } ``` ##### Variables ``` { "id": "gid://shopify//10079785100", "authentication": { "authenticationData": { "transStatus": "Y", "transStatusReason": "", "authenticationFlow": "FRICTIONLESS", "version": "V2_3", "chargebackLiability": "MERCHANT" }, "partnerError": "PROCESSING_ERROR" }, "paymentDetails": { "card": { "type": "AMERICAN_EXPRESS", "descriptor": "", "bin": "", "last4": "", "dynamicLast4": "", "expirationMonth": "", "expirationYear": "", "cardHolderName": "", "billingAddress": {}, "wallet": "APPLE_PAY", "issuerName": "", "networkTransactionId": "" } } } ``` ##### Schema ``` input VerificationSessionThreeDSecureAuthentication { authenticationData: VerificationSessionThreeDSecureAuthenticationData partnerError: VerificationSessionThreeDSecurePartnerError } input VerificationSessionThreeDSecureAuthenticationData { transStatus: VerificationSessionThreeDSecureTransStatus! transStatusReason: String authenticationFlow: VerificationSessionThreeDSecureAuthenticationFlow! version: VerificationSessionThreeDSecureVersion! chargebackLiability: VerificationSessionThreeDSecureChargebackLiability! } input VerificationSessionPaymentDetailsInput { card: VerificationSessionCardInput } input VerificationSessionCardInput { type: VerificationSessionCardBrandInput! descriptor: String! bin: String! last4: String! dynamicLast4: String expirationMonth: String! expirationYear: String! cardHolderName: String billingAddress: VerificationSessionAddressInput wallet: DigitalWallet issuerName: String networkTransactionId: String } ```