POST
/chat/copilot/reword-message
curl \
--request POST 'https://domain.tld/api/v2/chat/copilot/reword-message' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-Popsell-Brand: 3" \
--data '{"base_message":"string"}'
Request examples
# Headers
X-Popsell-Brand: 3
# Payload
{
"base_message": "string"
}
Response examples (200)
{
"message": "string"
}