Authorization: ********************curl --location --request PATCH '/api/v1/contracts//review' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"review": {
"comment": "string",
"overall_rate": 0,
"rating_scores": [
{
"rating_id": 0,
"rate": 1
}
]
}
}'{
"success": true,
"data": {
"review": {
"id": 0,
"contract_id": 0,
"comment": "string",
"overall_rate": 0,
"ratings": [
{
"rating_id": 0,
"rating_name": "string",
"rate": 0
}
],
"created_at": "2019-08-24T14:15:22.123Z",
"updated_at": "2019-08-24T14:15:22.123Z"
}
}
}