curl --request POST \
--url https://storekit.samarthh.me/v1/store/{storeId}/public/contact \
--header 'Content-Type: application/json' \
--data '
{
"name": "John Doe",
"email": "[email protected]",
"subject": "Inquiry",
"message": "Hello, I have a question about your products."
}
'Submit a contact form for a store (public endpoint, no auth required)
curl --request POST \
--url https://storekit.samarthh.me/v1/store/{storeId}/public/contact \
--header 'Content-Type: application/json' \
--data '
{
"name": "John Doe",
"email": "[email protected]",
"subject": "Inquiry",
"message": "Hello, I have a question about your products."
}
'