Skip to main content
PUT
/
cfs-reviews
/
update
/
{review_id}
Update Review
curl --request PUT \
  --url https://api.swoogo.com/api/v1/cfs-reviews/update/{review_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'notes=An updated note!' \
  --data rating=5.00
{
  "name": "Unauthorized",
  "message": "Your request was made with invalid credentials.",
  "code": 0,
  "status": 401
}

Authorizations

Authorization
string
header
required

OAuth 2.0 bearer token obtained from POST /oauth2/token. Tokens expire after 30 minutes. Include in the Authorization header as Bearer {access_token}.

Path Parameters

review_id
integer
required

integer - required - The ID of the review you want to delete

Example:

1

Body

application/x-www-form-urlencoded
notes
string
Example:

"An updated note!"

rating
string
Example:

"5.00"

Response