> ## Documentation Index
> Fetch the complete documentation index at: https://evalgate.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Create execution state resume

> Requires scopes: runs:write



## OpenAPI

````yaml /api-reference/openapi.json post /api/execution-state/handoffs/{bundleId}/resume
openapi: 3.1.2
info:
  title: EvalGate API
  version: 5.1.0
  description: EvalGate API. See docs/api-contract.md for stability commitments.
servers:
  - url: https://evalgate.com
    description: Production
  - url: http://localhost:3000
    description: Local
security: []
paths:
  /api/execution-state/handoffs/{bundleId}/resume:
    post:
      tags:
        - execution state
      summary: Create execution state resume
      description: 'Requires scopes: runs:write'
      operationId: post_execution_state_handoffs_bundleId_resume
      parameters:
        - name: bundleId
          in: path
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/PostApiExecutionStateHandoffsBundleIdResumeRequest
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/PostApiExecutionStateHandoffsBundleIdResumeResponse200ApplicationJson
        '400':
          $ref: '#/components/responses/ValidationError'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          $ref: '#/components/responses/Conflict'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/InternalError'
        '503':
          $ref: '#/components/responses/ServiceUnavailable'
      security:
        - bearerAuth: []
components:
  schemas:
    PostApiExecutionStateHandoffsBundleIdResumeRequest:
      type: object
      properties:
        acknowledgements:
          type: array
          items:
            oneOf:
              - type: string
                enum:
                  - objective
              - type: string
                enum:
                  - active_artifacts
              - type: string
                enum:
                  - current_plan
              - type: string
                enum:
                  - open_questions
              - type: string
                enum:
                  - rejected_approaches
              - type: string
                enum:
                  - policy_state
              - type: string
                enum:
                  - required_verification
      additionalProperties: false
      required:
        - acknowledgements
    PostApiExecutionStateHandoffsBundleIdResumeResponse200ApplicationJson:
      type: object
      properties:
        id:
          type: string
        decision:
          oneOf:
            - type: string
              enum:
                - failed
            - type: string
              enum:
                - conflicted
            - type: string
              enum:
                - verified
            - type: string
              enum:
                - verified_with_warnings
            - type: string
              enum:
                - insufficient_context
            - type: string
              enum:
                - unsafe
        createdAt:
          type: string
        organizationId:
          $ref: '#/components/schemas/OrganizationId'
        schemaVersion:
          type: number
          enum:
            - 1
        reasonCodes:
          type: array
          items:
            type: string
        evidence:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              organizationId:
                $ref: '#/components/schemas/OrganizationId'
              schemaVersion:
                type: number
                enum:
                  - 1
              kind:
                oneOf:
                  - type: string
                    enum:
                      - trace_revision
                  - type: string
                    enum:
                      - trajectory
                  - type: string
                    enum:
                      - evidence_item
                  - type: string
                    enum:
                      - evaluation_run
                  - type: string
                    enum:
                      - test_result
                  - type: string
                    enum:
                      - measurement_revision
                  - type: string
                    enum:
                      - evaluator_release
                  - type: string
                    enum:
                      - repair_decision
                  - type: string
                    enum:
                      - experiment_decision
                  - type: string
                    enum:
                      - objective_decision
                  - type: string
                    enum:
                      - release_plan
                  - type: string
                    enum:
                      - release_decision
                  - type: string
                    enum:
                      - production_outcome
                  - type: string
                    enum:
                      - human_adjudication
                  - type: string
                    enum:
                      - privacy_manifest
                  - type: string
                    enum:
                      - task_environment_snapshot
                  - type: string
                    enum:
                      - task_attempt
                  - type: string
                    enum:
                      - state_delta
                  - type: string
                    enum:
                      - context_epoch
                  - type: string
                    enum:
                      - compaction_event
                  - type: string
                    enum:
                      - model_handoff
                  - type: string
                    enum:
                      - memory_decision
                  - type: string
                    enum:
                      - orchestration_dispatch
                  - type: string
                    enum:
                      - subagent_run
                  - type: string
                    enum:
                      - trial_batch
                  - type: string
                    enum:
                      - harness_comparison
              contentHash:
                type: string
              occurredAt:
                type: string
              privacyManifestId:
                type: string
              privacyViewId:
                type: string
            additionalProperties: false
            required:
              - id
              - organizationId
              - schemaVersion
              - kind
              - contentHash
              - occurredAt
        sessionId:
          type: string
        checks:
          type: object
          properties:
            objectivePreserved:
              oneOf:
                - type: 'null'
                - type: boolean
                  enum:
                    - false
                - type: boolean
                  enum:
                    - true
            hardConstraintsPreserved:
              oneOf:
                - type: 'null'
                - type: boolean
                  enum:
                    - false
                - type: boolean
                  enum:
                    - true
            completedWorkPreserved:
              oneOf:
                - type: 'null'
                - type: boolean
                  enum:
                    - false
                - type: boolean
                  enum:
                    - true
            openWorkPreserved:
              oneOf:
                - type: 'null'
                - type: boolean
                  enum:
                    - false
                - type: boolean
                  enum:
                    - true
            rejectedApproachesPreserved:
              oneOf:
                - type: 'null'
                - type: boolean
                  enum:
                    - false
                - type: boolean
                  enum:
                    - true
            artifactIdentitiesPreserved:
              oneOf:
                - type: 'null'
                - type: boolean
                  enum:
                    - false
                - type: boolean
                  enum:
                    - true
            policyStatePreserved:
              oneOf:
                - type: 'null'
                - type: boolean
                  enum:
                    - false
                - type: boolean
                  enum:
                    - true
            sourceLimitationsAcknowledged:
              oneOf:
                - type: 'null'
                - type: boolean
                  enum:
                    - false
                - type: boolean
                  enum:
                    - true
          additionalProperties: false
          required:
            - objectivePreserved
            - hardConstraintsPreserved
            - completedWorkPreserved
            - openWorkPreserved
            - rejectedApproachesPreserved
            - artifactIdentitiesPreserved
            - policyStatePreserved
            - sourceLimitationsAcknowledged
        handoffBundleId:
          type: string
        evaluatorReleaseId:
          type: string
        resumePlanHash:
          type: string
      additionalProperties: false
      required:
        - id
        - decision
        - createdAt
        - organizationId
        - schemaVersion
        - reasonCodes
        - evidence
        - sessionId
        - checks
        - handoffBundleId
    OrganizationId:
      type: string
      format: uuid
    ApiError:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              enum:
                - UNAUTHORIZED
                - FORBIDDEN
                - NOT_FOUND
                - INVALID_REFERENCE
                - VALIDATION_ERROR
                - RATE_LIMITED
                - CONFLICT
                - INTERNAL_ERROR
                - SERVICE_UNAVAILABLE
                - QUOTA_EXCEEDED
                - FEATURE_LIMIT_REACHED
                - NO_ORG_MEMBERSHIP
                - SHARE_REVOKED
                - SHARE_EXPIRED
                - SHARE_UNAVAILABLE
                - PROVIDER_KEY_MISSING
                - PROVIDER_KEY_EXPIRED
                - PROVIDER_RATE_LIMITED
                - PROVIDER_UNAUTHORIZED
                - PROVIDER_UNAVAILABLE
                - AGENT_HANDOFF_INVALID
                - AGENT_HANDOFF_EXPIRED
                - AGENT_HANDOFF_DENIED
                - AGENT_HANDOFF_CONSUMED
                - PAYLOAD_TOO_LARGE
                - METHOD_NOT_ALLOWED
            message:
              type: string
            details: {}
            requestId:
              type: string
              format: uuid
            redaction:
              type: object
              properties:
                applied:
                  type: boolean
                  enum:
                    - true
                fieldCount:
                  type: integer
                  minimum: 0
                secretCount:
                  type: integer
                  minimum: 0
              required:
                - applied
                - fieldCount
                - secretCount
          required:
            - code
            - message
      required:
        - error
  responses:
    ValidationError:
      description: Validation error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
      headers:
        WWW-Authenticate:
          description: >-
            Bearer challenge. Agent-facing routes include the RFC 9728
            resource_metadata URL.
          schema:
            type: string
    Forbidden:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Conflict:
      description: Conflict
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    RateLimited:
      description: Rate limit exceeded
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
      headers:
        Retry-After:
          description: Delay in seconds before retrying when present.
          schema:
            type: integer
            minimum: 1
        RateLimit-Policy:
          description: IETF HTTPAPI structured quota policy (work in progress).
          schema:
            type: string
        RateLimit:
          description: >-
            IETF HTTPAPI structured remaining quota and reset delay (work in
            progress).
          schema:
            type: string
    InternalError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    ServiceUnavailable:
      description: Service unavailable
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: EvalGate API key
      description: >-
        Organization-scoped EvalGate API key. Discover the supported agent
        scopes at /.well-known/oauth-protected-resource. Per-operation grants
        are listed in x-evalgate-required-scopes; OpenAPI bearer security
        requirement arrays remain empty as required for non-OAuth schemes.
      x-evalgate-scopes-supported:
        - eval:read
        - eval:write
        - objectives:read
        - objectives:write
        - runs:read
        - runs:write
        - traces:read
        - traces:write
        - exports:download
        - reports:write
        - prompt:publish
        - scorer:publish
        - red_team:read
        - red_team:run
        - red_team:approve
        - docs:read
        - agent:read
        - agent:execute
        - admin:keys
        - admin:org
      x-evalgate-protected-resource-metadata: https://www.evalgate.com/.well-known/oauth-protected-resource

````