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

POST: /wiwo

Post what a translator is working on (i.e. create a WiwoEntry).

Required authorization scope

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

Parameters

Pass the JSON representation of the entry as the POST data.

Any read-only attributes you set will be ignored.

Example request

Here's an example of submitting a request using curl:

curl -H 'Content-Type: application/json' \
    -H 'Authorization: Bearer OAUTH2_ACCESS_TOKEN' \
    -d '{
      "message": "Just finished a mountaineering handbook, German to English, 4307 words, for a global brand. Time for tea!",
      "message_language": "eng",  
      "source_language": "deu",
      "target_language": "eng",
      "discipline": "Mountaineering",  
      "wordcount": 4307,
      "cat_tool": "OmegaT",
      "percent_complete": 100,
      "location": {
          "latitude": 35.779590,
          "longitude": -78.638179,
          "show_location": true
      },
      "representative_terms": [
          "one",
          "two",
          "buckle my",
          "shoe"
      ]
    }' \
    https://api.proz.com/v2/wiwo

Response

On success, a 201 Created HTTP status code will be returned, along with the created WiwoEntry.

On error, a standard error response will be returned.