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

# List Orders

> Returns all orders belonging to the authenticated user's account.



## OpenAPI

````yaml /openapi.json get /orders
openapi: 3.1.0
info:
  title: Fortis Evaluations API
  version: 1.0.0
servers:
  - url: https://api.fortiseval.com/v1
    description: Live
  - url: https://sandbox-api.fortiseval.com/v1
    description: Sandbox
security:
  - http: []
paths:
  /orders:
    get:
      tags:
        - Order
      summary: List Orders
      description: Returns all orders belonging to the authenticated user's account.
      operationId: orders.index
      parameters:
        - name: sort
          in: query
          description: >-
            Available sorts are `created_at`, `number`, `status`, `total`,
            `completed_at`. You can sort by multiple options by separating them
            with a comma. To sort in descending order, use `-` sign in front of
            the sort, for example: `-created_at`.
          schema:
            type: string
            default: '-created_at'
        - name: filter[status]
          in: query
          schema:
            type: string
        - name: filter[number]
          in: query
          schema:
            type: string
        - name: filter[custom_reference]
          in: query
          schema:
            type: string
        - name: filter[team]
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Paginated set of `OrderResource`
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Order'
                  links:
                    type: object
                    properties:
                      first:
                        type:
                          - string
                          - 'null'
                      last:
                        type:
                          - string
                          - 'null'
                      prev:
                        type:
                          - string
                          - 'null'
                      next:
                        type:
                          - string
                          - 'null'
                    required:
                      - first
                      - last
                      - prev
                      - next
                  meta:
                    type: object
                    properties:
                      current_page:
                        type: integer
                        minimum: 1
                      from:
                        type:
                          - integer
                          - 'null'
                        minimum: 1
                      last_page:
                        type: integer
                        minimum: 1
                      links:
                        type: array
                        description: Generated paginator links.
                        items:
                          type: object
                          properties:
                            url:
                              type:
                                - string
                                - 'null'
                            label:
                              type: string
                            active:
                              type: boolean
                          required:
                            - url
                            - label
                            - active
                      path:
                        type:
                          - string
                          - 'null'
                        description: Base path for paginator generated URLs.
                      per_page:
                        type: integer
                        description: Number of items shown per page.
                        minimum: 0
                      to:
                        type:
                          - integer
                          - 'null'
                        description: Number of the last item in the slice.
                        minimum: 1
                      total:
                        type: integer
                        description: Total number of items being paginated.
                        minimum: 0
                    required:
                      - current_page
                      - from
                      - last_page
                      - links
                      - path
                      - per_page
                      - to
                      - total
                required:
                  - data
                  - links
                  - meta
components:
  schemas:
    Order:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier for the order (e.g. ord_xxxxx).
        url:
          type: string
          description: The URL to view this order in the Portal.
        number:
          type: string
        status:
          $ref: '#/components/schemas/OrderStatus'
        quote_id:
          type:
            - string
            - 'null'
          description: The associated quote identifier.
        custom_reference:
          type:
            - string
            - 'null'
          description: A custom reference provided by the customer.
        custom_metadata:
          type:
            - array
            - 'null'
          description: Custom metadata attached to the order.
          items: {}
        total:
          type: integer
          description: The order total in cents.
        currency:
          type: string
          description: The currency code (e.g. "usd").
        cart:
          anyOf:
            - $ref: '#/components/schemas/Cart'
              description: The associated cart.
            - type: 'null'
        documents:
          type: array
          description: The associated documents.
          items:
            $ref: '#/components/schemas/Document'
        intake_at:
          type:
            - string
            - 'null'
        in_progress_at:
          type:
            - string
            - 'null'
        on_hold_at:
          type:
            - string
            - 'null'
        completed_at:
          type:
            - string
            - 'null'
        created_at:
          type: string
        updated_at:
          type: string
      required:
        - id
        - url
        - number
        - status
        - custom_reference
        - custom_metadata
        - total
        - currency
        - intake_at
        - in_progress_at
        - on_hold_at
        - completed_at
        - created_at
        - updated_at
      title: Order
    OrderStatus:
      type: string
      enum:
        - created
        - in_progress
        - awaiting_review
        - completed
        - refunded
        - cancelled
      title: OrderStatus
    Cart:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier for the cart (e.g. cart_xxxxx).
        number:
          type: string
          description: The cart UUID.
        status:
          $ref: '#/components/schemas/CartStatus'
        payment_status:
          anyOf:
            - $ref: '#/components/schemas/PaymentStatus'
            - type: 'null'
        is_individual:
          type: boolean
          description: Whether this is an individual (non-business) order.
        turnaround_type:
          anyOf:
            - $ref: '#/components/schemas/TurnaroundType'
            - type: 'null'
        translation_preference_type:
          anyOf:
            - $ref: '#/components/schemas/TranslationPreferenceType'
            - type: 'null'
        physical_copy:
          type: boolean
          description: Whether a physical copy was requested.
        cc_emails:
          type:
            - array
            - 'null'
          description: CC email addresses for notifications.
          items:
            type: string
        subtotal:
          type: number
          description: The cart subtotal in dollars.
        total:
          type: number
          description: The cart total in dollars.
        last_activity_at:
          type:
            - string
            - 'null'
        unsubscribed_at:
          type:
            - string
            - 'null'
        paid_at:
          type:
            - string
            - 'null'
        created_at:
          type: string
        updated_at:
          type: string
      required:
        - id
        - number
        - status
        - payment_status
        - is_individual
        - turnaround_type
        - translation_preference_type
        - physical_copy
        - cc_emails
        - subtotal
        - total
        - last_activity_at
        - unsubscribed_at
        - paid_at
        - created_at
        - updated_at
      title: Cart
    Document:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier for the document (e.g. doc_xxxxx).
        title:
          type:
            - string
            - 'null'
          description: The document title.
        document_type:
          anyOf:
            - $ref: '#/components/schemas/DocumentType'
            - type: 'null'
        document_category:
          anyOf:
            - $ref: '#/components/schemas/DocumentCategory'
            - type: 'null'
        document_role:
          anyOf:
            - $ref: '#/components/schemas/DocumentRole'
            - type: 'null'
        file_name:
          type:
            - string
            - 'null'
        file_ext:
          type:
            - string
            - 'null'
          description: The file extension (e.g. "pdf").
        mime_type:
          type:
            - string
            - 'null'
          description: The MIME type (e.g. "application/pdf").
        size:
          type:
            - integer
            - 'null'
          description: The file size in bytes.
        page_count:
          type:
            - integer
            - 'null'
          description: The number of pages in the document.
        word_count:
          type:
            - integer
            - 'null'
          description: The word count of the document.
        character_count:
          type:
            - integer
            - 'null'
          description: The character count of the document.
        source_language_code:
          type:
            - string
            - 'null'
          description: The ISO 639-1 language code of the source document.
        source_language:
          type:
            - string
            - 'null'
          description: The human-readable source language name.
        metadata:
          type:
            - array
            - 'null'
          description: AI-extracted document metadata.
          items: {}
        analysis_completed_at:
          type:
            - string
            - 'null'
        created_at:
          type: string
        updated_at:
          type: string
      required:
        - id
        - title
        - document_type
        - document_category
        - document_role
        - file_name
        - file_ext
        - mime_type
        - size
        - page_count
        - word_count
        - character_count
        - source_language_code
        - source_language
        - metadata
        - analysis_completed_at
        - created_at
        - updated_at
      title: Document
    CartStatus:
      type: string
      enum:
        - in_progress
        - abandoned
        - expired
        - completed
      title: CartStatus
    PaymentStatus:
      type: string
      enum:
        - paid
        - unpaid
      title: PaymentStatus
    TurnaroundType:
      type: string
      enum:
        - standard
        - next_day
        - same_day
        - expedited
      title: TurnaroundType
    TranslationPreferenceType:
      type: string
      enum:
        - documents_in_english
        - client_provided
        - translation_service
      title: TranslationPreferenceType
    DocumentType:
      type: string
      enum:
        - credential_evaluation
        - translation
        - certified_translation
        - diploma
        - transcript
        - cv
        - professional_license
        - enrollment_report
        - id
        - passport
        - letter
        - recommendation_letter
        - expert_opinion_letter
        - work_experience_letter
        - admission_letter
        - portfolio
        - research_paper
        - certificate
        - birth_certificate
        - marriage_certificate
        - name_change_document
        - verification_letter
        - thesis
        - course_outline
        - background_check_report
        - medical_certificate
        - financial_statement
        - military_service_record
        - training_certificate
        - linkedin_profile
        - language_proficiency_certificate
        - deans_list_certificate
        - grade_report
        - academic_award
        - patent_document
        - membership_document
        - other
      title: DocumentType
    DocumentCategory:
      type: string
      enum:
        - vital
        - government
        - academic
        - financial
        - marketing
        - personal
        - professional
        - medical
        - legal
        - technical
        - identification
        - employment
        - immigration
        - property
        - intellectual_property
        - communication
        - research
        - security
        - military
        - certification
        - transportation
        - insurance
        - environmental
        - entertainment
        - cultural
        - other
      title: DocumentCategory
    DocumentRole:
      type: string
      enum:
        - source
        - reference
        - translation
        - evaluation
        - course_evaluation
        - expert_letter
        - work_product
        - other
      title: DocumentRole
  securitySchemes:
    http:
      type: http
      scheme: bearer

````