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

POST: /job-quotes/:id/notes

Create (append) a note to a job quote. Notes can be added by either the quoter or the job poster, and the other party will be notified via email. This allows for a simple form of communication between the two parties.

Required authorization scope

When using OAuth2 access tokens, the job.quote scope is required to create a job quote note. See scopes in the authentication guide for information about how to request this scope of authorization.

Parameters

A single note text is required as the POST data.

Example request

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

curl -H 'Content-Type: application/json' \
    -H 'Authorization: Bearer OAUTH2_ACCESS_TOKEN' \
    -d '{ "text": "This is a note!" }' \
    https://api.proz.com/v2/job-quotes/1234567/notes

Response

On success, a 201 Created HTTP status code will be returned, along with the updated job quote.

On error, a standard error response will be returned.