mutation PaymentSessionResolve(
$id: ID!,
$authorizationExpiresAt: DateTime
) {
paymentSessionResolve(
id: $id,
authorizationExpiresAt: $authorizationExpiresAt
) {
paymentSession {
id
state {
... on PaymentSessionStateResolved {
code
}
}
nextAction {
action
context {
... on PaymentSessionActionsRedirect {
redirectUrl
}
}
}
}
userErrors {
field
message
}
}
}
When trying to resolve a payment session (confirm a payment to an order)
it is returning the following error
Payment session has already been resolved with a different authentication, has already been rejected, or the response to start_payment_session request has not been received.
we have an offline access token from our shopify payment app
what does causes this? the order is not updated
Below is the X-REQUEST-ID:
xRequestId: ‘fdf90d4a-c3d2-4f0b-a32d-bb333e303030-1732549020’