application/json
PUT
/self/{shopId}/faqs/{faqId}
cURL (application/json)
curl \
--request PUT 'https://dev.sellpass.io/self/{shopId}/faqs/{faqId}' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"question":"string","answer":"string"}'
curl \
--request PUT 'https://dev.sellpass.io/self/{shopId}/faqs/{faqId}' \
--header "Authorization: $API_KEY" \
--header "Content-Type: text/json"
curl \
--request PUT 'https://dev.sellpass.io/self/{shopId}/faqs/{faqId}' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/*+json"
Request examples
{
"question": "string",
"answer": "string"
}
Request examples
{
"question": "string",
"answer": "string"
}
Request examples
{
"question": "string",
"answer": "string"
}