Access scope error credicard create payment

mutation {
customerPaymentMethodCreditCardCreate(
billingAddress: {
address1: “this is my street addtress…”,
city: “surat”,
company: “sqsqsqsqs”,
countryCode: IN,
firstName: “Umang”,
lastName: “Pancholi”,
phone: “111111111”,
provinceCode: “GJ”,
zip: “1111111111”,
},
customerId: “gid://shopify/Customer/1111111111”,
sessionId: “eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3N1ZV9udW1iZXIiOiI0MTExMTExMTExMTExMTExIiwibW9udGgiOjExLCJuYW1lIjoic3Nzc3Nzc3Nzc3MiLCJudW1iZXIiOiIxIiwic3RhcnRfbW9udGgiOjExLCJzdGFydF95ZWFyIjoyMDQxLCJ2ZXJpZmljYXRpb25fdmFsdWUiOiIxMTEiLCJ5Z1WFyIjoyMDQxLCJpYXQiOjE3MDY2MTU3NDd9.pv-gUNKO5J11bhTwO-f1O0FTxpyLz2KqcSkXCGUw6Ns”,
) {
customerPaymentMethod {
id
}
userErrors {
field
message
}
}
}

error:-

{
“data”: {
“customerPaymentMethodCreditCardCreate”: null
},
“errors”: [
{
“message”: “Access denied for customerPaymentMethodCreditCardCreate field. Required access: write_customers access scope. Also: Requires write_customer_payment_methods scope.”,
“locations”: [
{
“line”: 3,
“column”: 19
}
],
“path”: [
“customerPaymentMethodCreditCardCreate”
],
“extensions”: {
“code”: “ACCESS_DENIED”,
“documentation”: “https://shopify.dev/api/usage/access-scopes”,
“requiredAccess”: “write_customers access scope. Also: Requires write_customer_payment_methods scope.”
}
}
],
“extensions”: {
“cost”: {
“requestedQueryCost”: 10,
“actualQueryCost”: 10,
“throttleStatus”: {
“maximumAvailable”: 2000.0,
“currentlyAvailable”: 1990,
“restoreRate”: 100.0
}
}
}
}