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

# Resolve an uncertain plugin fulfillment



## OpenAPI

````yaml /openapi.en.json post /api/v2/orders/{shopId}/orders/{orderId}/fulfillment/manual-review/resolve
openapi: 3.0.0
info:
  title: ItemShop v2 API
  description: >-
    REST API platformy ItemShop v2 (NestJS + Fastify). Wszystkie ścieżki mają
    prefiks /api/v2.
  version: 2.0.0
  contact: {}
servers:
  - url: https://api.itemshop.dev
    description: Production
  - url: http://localhost:3000
    description: Local
security: []
tags: []
paths:
  /api/v2/orders/{shopId}/orders/{orderId}/fulfillment/manual-review/resolve:
    post:
      tags:
        - Orders
      summary: Resolve an uncertain plugin fulfillment
      operationId: OrderController_resolveFulfillmentManualReview
      parameters:
        - name: shopId
          required: true
          in: path
          schema:
            type: string
          description: Shop ID (ObjectId)
        - name: orderId
          required: true
          in: path
          schema:
            type: string
          description: Order ID (ObjectId)
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ResolveFulfillmentReviewDto'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    $ref: '#/components/schemas/Order'
                  message:
                    type: string
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Too many requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    ResolveFulfillmentReviewDto:
      type: object
      properties:
        resolution:
          type: string
          enum:
            - retry
            - complete
        confirmOrderId:
          type: string
          pattern: ^[0-9a-fA-F]{24}$
        note:
          type: string
          minLength: 5
          maxLength: 1000
      required:
        - resolution
        - confirmOrderId
        - note
    Order:
      type: object
      properties:
        _id:
          type: string
          example: 664f1a2b3c4d5e6f7a8b9c0d
        orderNumber:
          type: string
          example: 3a7b9c2d
        status:
          type: string
          example: paid
          enum:
            - pending
            - paid
            - processing
            - completed
            - cancelled
            - failed
            - dispute
        product:
          type: object
          properties:
            id:
              type: string
              example: 664f1a2b3c4d5e6f7a8b9c0d
            name:
              type: string
            price:
              type: number
        customer:
          type: object
          properties:
            nickname:
              type: string
              example: Steve
            email:
              type: string
        payment:
          type: object
          properties:
            amount:
              type: number
              example: 19.99
            currency:
              type: string
              example: PLN
            fee:
              type: object
              properties:
                percentage:
                  type: number
                amount:
                  type: number
                netAmount:
                  type: number
        vat:
          type: object
          properties:
            enabled:
              type: boolean
            rate:
              type: number
              example: 23
            amount:
              type: number
            netAmount:
              type: number
        quantity:
          type: integer
          example: 1
        createdAt:
          type: string
          format: date-time
    ErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          example: false
        statusCode:
          type: integer
          example: 400
        error:
          type: string
          example: Error message
        timestamp:
          type: string
          format: date-time
        path:
          type: string
          example: /api/v2/...
  securitySchemes:
    bearerAuth:
      scheme: bearer
      bearerFormat: JWT
      type: http

````