Rather than take JSON, the API takes standard form-data, like an HTML form would take. So try doing a PUT with:
status=submitted
Christian
On Jul 4, 2012, at 4:51, Webchen <
ch...@webchen.co.uk> wrote:
> Hi,
>
> Maybe I'm doing something wrong but I wanted to know how you can successfully update the status of a review request to "submitted"
>
> I tried sending the following JSON:
>
> { "review_request" : {"status" : "submitted" } }
>
> and also
>
> {"status" : "submitted" }
>
> As an authenticated put request to the update URL of the specific review_request and I just get a 400 error back saying:
>
> "Field is not supported"
>
> It's ReviewBoard 1.6
>
> TIA