Reviewers

Reviewer API provides access to the reviewer tools.

Reviewing

Note

Requires authentication and permission to review apps.

Warning

Not available through CORS.

GET /api/v2/reviewers/reviewing/

Returns a list of apps that are being reviewed.

Response:

Parameters:
Status Codes:
  • 200 OK – successfully completed.

Mini-Manifest

Note

Requires authentication and permission to review apps.

Warning

Not available through CORS.

POST /api/v2/reviewers/app/(int: id)|(string: slug)/token

Returns a short-lived token that can be used to access the mini-manifest. Use this token as a query-string parameter to the mini-manifest URL named “token” within 60 seconds.

Response:

Parameters:
  • token – The token.
Status Codes:
  • 200 OK – successfully completed.

Canned Responses

Note

Requires authentication and permission to alter reviewer tools.

GET /api/v1/reviewers/canned-responses/
POST /api/v1/reviewers/canned-responses/
GET /api/v1/reviewers/canned-responses/(int: id)/
PUT /api/v1/reviewers/canned-responses/(int: id)/
PATCH /api/v1/reviewers/canned-responses/(int: id)/
DELETE /api/v1/reviewers/canned-responses/(int: id)/

Return, create, modify and delete the canned responses reviewers can use when reviewing apps.

Response / Request parameters:

Parameters:
  • id (int) – unique identifier for the canned response.
  • name (string|object|null) – canned response name.
  • response (string|object|null) – canned response text.
  • sort_group (string) – group the canned response belongs to.
Status Codes:

Reviewer Scores

Note

Requires authentication and permission to alter reviewer tools.

GET /api/v1/reviewers/scores/
POST /api/v1/reviewers/scores/
GET /api/v1/reviewers/scores/(int: id)/
PUT /api/v1/reviewers/scores/(int: id)/
PATCH /api/v1/reviewers/scores/(int: id)/
DELETE /api/v1/reviewers/scores/(int: id)/

Return, create, modify and delete the reviewer scores for an user. This API only deals with manual scores, and never returns or allows you to modify automatic ones.

Response / Request parameters:

Parameters:
  • id (int) – unique identifier for the reviewer score.
  • score (int) – score value (can be negative).
  • note (string) – optional note attached to the score.
Status Codes: