curl --request PUT \
--url https://storekit.samarthh.me/v1/user/store/{storeId}/social-media \
--header 'Content-Type: application/json' \
--data '
{
"socialMediaUrls": {
"facebook": "https://facebook.com/newstore",
"twitter": "https://twitter.com/newstore",
"instagram": "https://instagram.com/newstore",
"linkedin": "https://linkedin.com/company/newstore"
}
}
'Update only the store social media URLs. Only owner can update.
curl --request PUT \
--url https://storekit.samarthh.me/v1/user/store/{storeId}/social-media \
--header 'Content-Type: application/json' \
--data '
{
"socialMediaUrls": {
"facebook": "https://facebook.com/newstore",
"twitter": "https://twitter.com/newstore",
"instagram": "https://instagram.com/newstore",
"linkedin": "https://linkedin.com/company/newstore"
}
}
'