PUT /api/Article/update-article/{id}
curl \
 --request PUT 'http://mamaguide.runasp.net/api/Article/update-article/{id}' \
 --header "Content-Type: application/json" \
 --data '{"title":"string","content":"string"}'
curl \
 --request PUT 'http://mamaguide.runasp.net/api/Article/update-article/{id}' \
 --header "Content-Type: text/json"
curl \
 --request PUT 'http://mamaguide.runasp.net/api/Article/update-article/{id}' \
 --header "Content-Type: application/*+json"
Request examples
{
  "title": "string",
  "content": "string"
}