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

PATCH: /wiwo/:id

Required authorization scope

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

Parameters

Send a partial JSON representation of the entry 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 '{
          "word_count": 2500
        }' \
    https://api.proz.com/v2/wiwo/123

Response

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

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.