ProZ.com global directory of translation services
The translation workplace
Ideas

PATCH: /wiwo/:wiwo_id/replies/:reply_id

Required authorization scope

When using OAuth2 access tokens, the wiwo scope is required to update a reply. See scopes in the authentication guide for information about how to request this scope of authorization.

Parameters

Send a partial JSON representation of the reply in the request body, with just the fields you want to update. Any non-editable fields will be ignored.

Example request

Here's an example of a request using curl:

curl --request PATCH \
    -H 'Content-Type: application/json' \
    -H 'Authorization: Bearer OAUTH2_ACCESS_TOKEN' \
    -d '{
          "message": "Some updated text."
        }' \
    https://api.proz.com/v2/wiwo/187/replies/42

Response

On success, a 200 OK HTTP status code will be returned, along with the current full reply.

On error, a standard error response will be returned.

If a request fails because access is denied, a 403 Unauthorized HTTP status code will be returned, along with an error string explaining the reason.