curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#SHOPIFY_CREATE_ORDER_GRAPHQL' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "SHOPIFY_CREATE_ORDER_GRAPHQL",
"parameters": {
"email": "<string>",
"lineItems": {},
"sendReceipt": true,
"fulfillmentStatus": "fulfilled",
"financialStatus": "pending",
"inventoryBehaviour": "bypass",
"note": "<string>",
"additionalFields": {}
}
}
'