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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project_id
string
required

Your Paragon Project ID

Body

application/json

Response

200

Success