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

POST: /wiwo/:id/replies

Post a reply to a "what I'm working on" entry.

Required authorization scope

When using OAuth2 access tokens, the wiwo scope is required to reply to 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 reply 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": "Sounds like an interesting project.",
      "message_language": "eng"
    }' \
    https://api.proz.com/v2/wiwo/1234/replies

Response

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

On error, a standard error response will be returned.