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

# List fulfillment methods available for a checkout

> Returns the flat list of selectable methods (`id`, `name`, `description`, `amount`, `currency`, `method_type`). Use a method's `id` as `fulfillment_method_id` in `setCheckoutFulfillment`.



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/commerce/checkouts/{id}/fulfillment-methods
openapi: 3.1.0
info:
  title: VaultGraph Portal API
  version: 0.1.1
  description: Server-to-server endpoints exposed by the VaultGraph portal (beta).
servers:
  - url: https://app.vaultgraph.com
    description: Production
security: []
tags:
  - name: Shops
    description: Shop management endpoints.
  - name: Commerce
    description: >-
      Deployment-scoped commerce endpoints (catalog, checkout, order).
      Authenticated with a deployment (`dk_`) API key. Internal plumbing between
      the hosted MCP server and the merchant adapter — merchants integrate via
      the MCP, not these REST routes.
paths:
  /api/commerce/checkouts/{id}/fulfillment-methods:
    get:
      tags:
        - Commerce
      summary: List fulfillment methods available for a checkout
      description: >-
        Returns the flat list of selectable methods (`id`, `name`,
        `description`, `amount`, `currency`, `method_type`). Use a method's `id`
        as `fulfillment_method_id` in `setCheckoutFulfillment`.
      operationId: listCheckoutFulfillmentMethods
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Available fulfillment methods
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/FulfillmentMethod'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    FulfillmentMethod:
      type: object
      description: >-
        A selectable fulfillment option for a checkout. Use `id` as
        `fulfillment_method_id` in `setCheckoutFulfillment`. Shipping methods
        require a `shipping_address`; pickup/digital do not. Money is integer
        minor units.
      required:
        - id
        - name
        - description
        - amount
        - currency
        - method_type
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        amount:
          type: integer
          description: Integer minor units.
        currency:
          type: string
          pattern: ^[A-Z]{3}$
        method_type:
          type: string
          enum:
            - shipping
            - pickup
            - digital
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````