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

# List vault outbound requests

> List vault outbound (withdrawal) requests for the authenticated organization, including line items and associated vault inventory details.

**Requires:** vault enabled on the organization.

**Rate limit:** 120 requests burst, 60 requests/minute sustained.



## OpenAPI

````yaml /api-reference/openapi.json get /vault/get-outbound-requests/v1
openapi: 3.1.0
info:
  title: Pure Public API
  description: >-
    Public API for accessing Pure marketplace data including products, spot
    prices, and more.
  version: 2.0.0
  license:
    name: Proprietary
servers:
  - url: https://api.collectpure.com/
    description: Production server
  - url: https://sandbox.api.collectpure.com/
    description: Sandbox server
security:
  - apiKey: []
tags:
  - name: Root
    description: API information and status
  - name: Products
    description: >-
      Enriched product endpoints — full product details, search, and catalog
      metadata
  - name: Listings
    description: Listing management — create, update, deactivate, list, and view statistics
  - name: Offers
    description: Offer management — create, update, deactivate, list, and view statistics
  - name: Orders
    description: Purchase and sale order management for authenticated organizations
  - name: Marketplace
    description: Spot prices, marketplace statistics, shipping dates, and sitemap data
  - name: Organization
    description: Organization details and settings management
  - name: Inventory
    description: >-
      Inventory management — view items and aggregate statistics for your
      organization
  - name: Vault
    description: >-
      Vault shipping — intake shipments, holdings, fulfillment, and outbound
      requests
  - name: Products (Legacy)
    description: Legacy product endpoints — use the enriched Products endpoints instead
  - name: Listings (Legacy)
    description: Legacy listing endpoints — use Orderbook endpoints instead
  - name: Offers (Legacy)
    description: Legacy offer endpoints — use Orderbook endpoints instead
  - name: Execution - Buy
    description: Buy execution — quotes, payment methods, and order placement
  - name: Execution - Sell
    description: Sell execution — quotes, payout methods, and order placement
  - name: Execution
    description: Execution meta — trading status and shared execution resources
  - name: Sandbox
    description: >-
      Sandbox-only endpoints for discovering test data — not available in
      production
paths:
  /vault/get-outbound-requests/v1:
    get:
      tags:
        - Vault
      summary: List vault outbound requests
      description: >-
        List vault outbound (withdrawal) requests for the authenticated
        organization, including line items and associated vault inventory
        details.


        **Requires:** vault enabled on the organization.


        **Rate limit:** 120 requests burst, 60 requests/minute sustained.
      parameters:
        - schema:
            type: string
            enum:
              - pending
              - approved
              - rejected
              - completed
              - cancelled
          in: query
          name: status
          required: false
          description: Filter by outbound request status
        - schema:
            default: 20
            type: integer
            minimum: 1
            maximum: 100
          in: query
          name: limit
          required: false
          description: Maximum number of records to return (default 20, max 100)
        - schema:
            default: 0
            type: integer
            minimum: 0
            maximum: 9007199254740991
          in: query
          name: offset
          required: false
          description: Number of records to skip (for pagination)
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          pattern: >-
                            ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                        status:
                          type: string
                          enum:
                            - pending
                            - approved
                            - rejected
                            - completed
                            - cancelled
                        notes:
                          anyOf:
                            - type: string
                            - type: 'null'
                        reviewedAt:
                          anyOf:
                            - type: string
                            - type: 'null'
                        shippedAt:
                          anyOf:
                            - type: string
                            - type: 'null'
                        trackingCarrier:
                          anyOf:
                            - type: string
                            - type: 'null'
                        trackingNumber:
                          anyOf:
                            - type: string
                            - type: 'null'
                        createdAt:
                          type: string
                        updatedAt:
                          type: string
                        lineItems:
                          type: array
                          items:
                            type: object
                            properties:
                              id:
                                type: string
                                format: uuid
                                pattern: >-
                                  ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                              vaultLineItemId:
                                type: string
                                format: uuid
                                pattern: >-
                                  ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                              quantity:
                                type: number
                              outboundImages:
                                type: array
                                items:
                                  type: string
                              verifiedAt:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                              verifiedQuantity:
                                anyOf:
                                  - type: number
                                  - type: 'null'
                              createdAt:
                                type: string
                              updatedAt:
                                type: string
                              vaultLineItem:
                                type: object
                                properties:
                                  id:
                                    type: string
                                    format: uuid
                                    pattern: >-
                                      ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                                  vaultIntakeShipmentId:
                                    type: string
                                    format: uuid
                                    pattern: >-
                                      ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                                  productId:
                                    type: string
                                    format: uuid
                                    pattern: >-
                                      ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                                  variantId:
                                    type: string
                                    format: uuid
                                    pattern: >-
                                      ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                                  quantityDeclared:
                                    type: number
                                  quantityReceived:
                                    anyOf:
                                      - type: number
                                      - type: 'null'
                                  quantityAccepted:
                                    anyOf:
                                      - type: number
                                      - type: 'null'
                                  quantityRejected:
                                    anyOf:
                                      - type: number
                                      - type: 'null'
                                  inspectionStatus:
                                    anyOf:
                                      - type: string
                                        enum:
                                          - pending
                                          - in_progress
                                          - passed
                                          - failed
                                          - partial
                                      - type: 'null'
                                  inspectionNotes:
                                    anyOf:
                                      - type: string
                                      - type: 'null'
                                  disposition:
                                    anyOf:
                                      - type: string
                                        enum:
                                          - hold_in_vault
                                          - return_to_sender
                                          - destroy
                                          - manual_review
                                      - type: 'null'
                                  dispositionReason:
                                    anyOf:
                                      - type: string
                                      - type: 'null'
                                  fulfillmentStatus:
                                    anyOf:
                                      - type: string
                                        enum:
                                          - available
                                          - locked
                                          - fulfilled
                                      - type: 'null'
                                  createdAt:
                                    type: string
                                  updatedAt:
                                    type: string
                                  product:
                                    anyOf:
                                      - type: object
                                        properties:
                                          id:
                                            type: string
                                            format: uuid
                                            pattern: >-
                                              ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                                          title:
                                            type: string
                                          sku:
                                            type: string
                                          material:
                                            type: string
                                        required:
                                          - id
                                          - title
                                          - sku
                                          - material
                                        additionalProperties: false
                                      - type: 'null'
                                  variant:
                                    anyOf:
                                      - type: object
                                        properties:
                                          id:
                                            type: string
                                            format: uuid
                                            pattern: >-
                                              ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                                          title:
                                            type: string
                                        required:
                                          - id
                                          - title
                                        additionalProperties: false
                                      - type: 'null'
                                required:
                                  - id
                                  - vaultIntakeShipmentId
                                  - productId
                                  - variantId
                                  - quantityDeclared
                                  - quantityReceived
                                  - quantityAccepted
                                  - quantityRejected
                                  - inspectionStatus
                                  - inspectionNotes
                                  - disposition
                                  - dispositionReason
                                  - fulfillmentStatus
                                  - createdAt
                                  - updatedAt
                                  - product
                                  - variant
                                additionalProperties: false
                            required:
                              - id
                              - vaultLineItemId
                              - quantity
                              - outboundImages
                              - verifiedAt
                              - verifiedQuantity
                              - createdAt
                              - updatedAt
                            additionalProperties: false
                      required:
                        - id
                        - status
                        - notes
                        - reviewedAt
                        - shippedAt
                        - trackingCarrier
                        - trackingNumber
                        - createdAt
                        - updatedAt
                      additionalProperties: false
                  total:
                    type: number
                required:
                  - data
                  - total
                additionalProperties: false
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header
      description: API key for authentication

````