curl --request POST \
--url http://app.localhost:3000/api/public/v1/customers/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com",
"storeId": "<string>",
"firstName": "<string>",
"lastName": "<string>"
}
'