Hi
I have try to call customerAccessTokenCreateWithMultipass graphql api following this document customerAccessTokenCreateWithMultipass (shopify.dev). But I get 403 error, Can you advise?
This is the query
query {
mutation($multipassToken: String!) {
customerAccessTokenCreateWithMultipass(multipassToken: $multipassToken) {
customerAccessToken { accessToken expiresAt }
customerUserErrors { code field message }
}
},
variables: {
multipassToken: "{{token}}"
}
}
Thanks