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","last_message":"string"}'
        Request examples
  
  # Headers
X-Popsell-Brand: 3
# Payload
{
  "base_message": "string",
  "last_message": "string"
}
        Response examples (200)
  
  {
  "message": "string"
}
        Response examples (401)
  
  {
  "message": "Unauthorized."
}
        Response examples (422)
  
  {
  "message": "field is required! (and 3 more error)",
  "errors": {
    "field": [
      "Error message details here"
    ],
    "additionalProperty1": [
      "Error message details here"
    ],
    "additionalProperty2": [
      "Error message details here"
    ]
  }
}