Benchling Review Process Stage API

A single stage within a ReviewProcess that defines a required step in the review workflow. Each stage specifies what action reviewers must take (see `ReviewProcessActionType`), who is eligible to be a reviewer (see `ReviewerType`), and optionally a specific Team. For sequential review processes, stages have a position index determining their order. Stages can be configured to allow or disallow authors and senders as reviewers, and can permit team member reassignment. The list endpoint returns stages from the current version of each accessible review process. To retrieve stages scoped to a specific review process, use `GET /benchling/review-process/{review_process_id}` and inspect `currentVersion.reviewStages`.

Operations 2

GET /review-process-stage/items List ReviewProcessStage items #
GET /review-process-stage/{review_process_stage_id} Get ReviewProcessStage by ID #

Documentation

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/benchling-reviewprocessstage-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

benchling-reviewprocessstage-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  title: Benchling Review Process Stage API
  version: 2.0.0
  description: 'A single stage within a ReviewProcess that defines a required step in the review

    workflow. Each stage specifies what action reviewers must take (see

    `ReviewProcessActionType`), who is eligible to be a reviewer (see `ReviewerType`),

    and optionally a specific Team. For sequential review processes, stages have a

    position index determining their order. Stages can be configured to allow or

    disallow authors and senders as reviewers, and can permit team member reassignment.


    The list endpoint returns stages from the current version of each accessible review

    process. To retrieve stages scoped to a specific review process, use

    `GET /benchling/review-process/{review_process_id}` and inspect `currentVersion.reviewStages`.'
servers:
- url: /api/v3
security:
- oAuth: []
- basicApiKeyAuth: []
tags:
- description: 'A single stage within a ReviewProcess that defines a required step in the review

    workflow. Each stage specifies what action reviewers must take (see

    `ReviewProcessActionType`), who is eligible to be a reviewer (see `ReviewerType`),

    and optionally a specific Team. For sequential review processes, stages have a

    position index determining their order. Stages can be configured to allow or

    disallow authors and senders as reviewers, and can permit team member reassignment.


    The list endpoint returns stages from the current version of each accessible review

    process. To retrieve stages scoped to a specific review process, use

    `GET /benchling/review-process/{review_process_id}` and inspect `currentVersion.reviewStages`.'
  name: ReviewProcessStage
  x-bnch-organization: Benchling
paths:
  /review-process-stage/items:
    get:
      description: List ReviewProcessStage items.
      operationId: ReviewProcessStage.List
      parameters:
      - $ref: '#/components/parameters/nextToken'
      - $ref: '#/components/parameters/omit'
      - $ref: '#/components/parameters/pageSize'
      - $ref: '#/components/parameters/returning'
      - description: Set to true to access beta operations via /api/v3.
        in: header
        name: EARLY-ACCESS
        required: false
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReviewProcessStagePaginatedList'
          description: OK
          headers: {}
        '400':
          $ref: '#/components/responses/BadRequest'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
      summary: List ReviewProcessStage items
      tags:
      - ReviewProcessStage
      x-bnch-rate-limit-tier: 4
  /review-process-stage/{review_process_stage_id}:
    get:
      description: Get a single ReviewProcessStage by ID.
      operationId: ReviewProcessStage.Get
      parameters:
      - description: ID of the ReviewProcessStage.
        in: path
        name: review_process_stage_id
        required: true
        schema:
          type: string
      - $ref: '#/components/parameters/returning'
      - $ref: '#/components/parameters/omit'
      - description: Set to true to access beta operations via /api/v3.
        in: header
        name: EARLY-ACCESS
        required: false
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReviewProcessStage'
          description: OK
          headers: {}
        '400':
          $ref: '#/components/responses/BadRequest'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
      summary: Get ReviewProcessStage by ID
      tags:
      - ReviewProcessStage
      x-bnch-rate-limit-tier: 5
components:
  schemas:
    TeamRef:
      properties:
        __typename:
          type: string
        id:
          format: api_id
          type: string
      type: object
    InternalServerError:
      properties:
        detail:
          type:
          - 'null'
          - string
          - object
        errorId:
          type: string
        instance:
          type: string
        status:
          type: integer
        title:
          type:
          - 'null'
          - string
        type:
          type: string
      required:
      - type
      - title
      - detail
      - status
      - instance
      type: object
    ReviewProcessStage:
      description: 'A single stage within a ReviewProcess that defines a required step in the review

        workflow. Each stage specifies what action reviewers must take (see

        `ReviewProcessActionType`), who is eligible to be a reviewer (see `ReviewerType`),

        and optionally a specific Team. For sequential review processes, stages have a

        position index determining their order. Stages can be configured to allow or

        disallow authors and senders as reviewers, and can permit team member reassignment.


        The list endpoint returns stages from the current version of each accessible review

        process. To retrieve stages scoped to a specific review process, use

        `GET /benchling/review-process/{review_process_id}` and inspect `currentVersion.reviewStages`.'
      properties:
        __typename:
          type: string
        action:
          description: Action to be taken by the reviewer for this review process stage
          enum:
          - APPROVE
          - COMPLETE
          - ACCEPT
          - REVIEW
          - WITNESS
          - SELF_REVIEW
          - null
          type:
          - 'null'
          - string
        allowAuthorReviewers:
          description: Whether authors can review this review process stage
          type: boolean
        allowSenderReviewer:
          description: Whether the sender can review this review process stage
          type: boolean
        createdAt:
          description: Timestamp when this review process stage was created
          format: datetime
          type: string
        description:
          description: Description of the review process stage
          type:
          - 'null'
          - string
        id:
          description: ID of the review process stage
          type: string
        isTeamReassignable:
          description: Whether team members can reassign this review stage to other team members
          type:
          - 'null'
          - boolean
        name:
          description: Title of the review process stage
          type:
          - 'null'
          - string
        reviewerType:
          description: Type of reviewer that is valid for the review process stage
          enum:
          - AUTHOR
          - TEAM
          - PROJECT_MEMBERS
          - null
          type:
          - 'null'
          - string
        selectedTeam:
          description: Team that is selected to review this review process stage
          oneOf:
          - $ref: '#/components/schemas/TeamRef'
          - type: 'null'
        sequentialPositionIndex:
          description: Position of this stage in the review process
          type:
          - 'null'
          - integer
      type: object
    GeneralError:
      properties:
        detail:
          type:
          - 'null'
          - string
          - object
        instance:
          type: string
        status:
          type: integer
        title:
          type:
          - 'null'
          - string
        type:
          type: string
      required:
      - type
      - title
      - detail
      - status
      - instance
      type: object
    ReviewProcessStagePaginatedList:
      additionalProperties: false
      properties:
        items:
          items:
            $ref: '#/components/schemas/ReviewProcessStage'
          type: array
        nextToken:
          type: string
      type: object
  parameters:
    pageSize:
      description: Number of results to return. Defaults to 50, maximum of 100.
      in: query
      name: pageSize
      schema:
        type: integer
    returning:
      description: Comma-separated list of top-level fields to include in each returned item. Cannot overlap with omit.
      explode: false
      in: query
      name: returning
      schema:
        items:
          type: string
        type: array
    nextToken:
      description: Token for pagination
      in: query
      name: nextToken
      schema:
        type: string
    omit:
      description: Comma-separated list of top-level fields to omit from each returned item. Cannot overlap with returning.
      explode: false
      in: query
      name: omit
      schema:
        items:
          type: string
        type: array
  responses:
    NotFound:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/GeneralError'
      description: Not Found
    TooManyRequests:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/GeneralError'
      description: Too Many Requests
    BadRequest:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/GeneralError'
      description: Bad Request
    Forbidden:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/GeneralError'
      description: Forbidden
    InternalServerError:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/InternalServerError'
      description: Internal Server Error
  securitySchemes:
    basicApiKeyAuth:
      description: Use issued API key for standard access to the API
      scheme: basic
      type: http
    basicClientIdSecretAuth:
      description: Auth used as part of client credentials OAuth flow prior to receiving a bearer token.
      scheme: basic
      type: http
    oAuth:
      description: OAuth2 Client Credentials flow intended for service access
      flows:
        clientCredentials:
          scopes: {}
          tokenUrl: /oauth/token
      type: oauth2