--- title: verificationSessionRedirect - Payments Apps API description: |- Redirects the buyer to the given URL for the verification session. Shopify will redirect the buyer to the URL where the 3DS authentication will take place when verifying the buyer's credit_card. api_version: 2025-01 api_name: payments-apps type: mutation api_type: graphql source_url: html: >- https://shopify.dev/docs/api/payments-apps/2025-01/mutations/verificationSessionRedirect md: >- https://shopify.dev/docs/api/payments-apps/2025-01/mutations/verificationSessionRedirect.md --- # verification​Session​Redirect mutation Requires `write_payment_sessions` access scope. Redirects the buyer to the given URL for the verification session. Shopify will redirect the buyer to the URL where the 3DS authentication will take place when verifying the buyer's credit\_card. ## Arguments * id [ID!](https://shopify.dev/docs/api/payments-apps/2025-01/scalars/ID) required The verification session ID. * redirect​Url [URL!](https://shopify.dev/docs/api/payments-apps/2025-01/scalars/URL) required The URL that Shopify will redirect the buyer to, for 3DS authentication. Applicable to verifications with the credit card payment method only. *** ## Verification​Session​Redirect​Payload returns * user​Errors [\[Verification​Session​User​Error!\]!](https://shopify.dev/docs/api/payments-apps/2025-01/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/2025-01/objects/VerificationSession) The updated verification session. *** ## Examples * ### verificationSessionRedirect reference ## Mutation Reference ```graphql mutation verificationSessionRedirect($id: ID!, $redirectUrl: URL!) { verificationSessionRedirect(id: $id, redirectUrl: $redirectUrl) { userErrors { field message } verificationSession { # VerificationSession fields } } } ``` ## Input ##### Variables ```json { "id": "gid://shopify//10079785100", "redirectUrl": "https://example.myshopify.com" } ```