Publish Review Request Draft¶
Path: | api/json/reviewrequests/{review_request_id}/draft/publish/ |
---|
URL Parameters¶
Parameter | Type | Description |
---|---|---|
review_request_id | Integer | The ID of the review request. |
HTTP POST¶
Publishes the draft of the specified review request.
Depending on server settings, this may trigger external notifications, such as an e-mail to all reviewers.
Generally, it’s better to use Publish Review Request. It will perform the same operation, but will take care to make sure the review request itself is public.
Example Request¶
POST /api/json/reviewrequests/12321/draft/publish/
Responses¶
HTTP 200: Success¶
On success, no payload data beyond the stat field will be sent.
Example Response¶
{
stat: "ok",
}
HTTP 401: Unauthorized¶
Error 103: Not Logged In¶
The client making the request is not logged in.
See Authenticating for more information.