curl --request POST \
--url https://api.henrylabs.ai/v0/checkout/session/quote \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--header 'x-api-key: <api-key>' \
--header 'x-user-id: <x-user-id>' \
--data '
{
"shippingDetails": {
"fullName": "John Doe",
"email": "[email protected]",
"phoneNumber": "+1234567890",
"addressLine1": "350 5th Ave",
"countryCode": "US",
"city": "New York",
"stateOrProvince": "New York",
"postalCode": "10001",
"addressLine2": "Apt 1"
},
"region": "<string>"
}
'