curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#SHOPIFY_UPDATE_CUSTOMER_GRAPHQL' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "SHOPIFY_UPDATE_CUSTOMER_GRAPHQL",
"parameters": {
"customerId": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"email": "<string>",
"streetAddressLine1": "<string>",
"streetAddressLine2": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"zipCode": "<string>",
"phone": "<string>",
"tags": "<string>",
"note": "<string>",
"locale": "<string>",
"taxExempt": true,
"taxExemptions": "<string>",
"metafields": {}
}
}
'