---
title: "SearchDispatchResult"
url: "https://stage-api-docs.centraldispatch.com/apis/stage-fulfillment-api-1-0-0/versions/8637c155-7ff6-49fa-ac0a-3b4df78c9665/schemas/SearchDispatchResult"
---

> Full API specification: https://stage-api-docs.centraldispatch.com/apis/stage-fulfillment-api-1-0-0/versions/8637c155-7ff6-49fa-ac0a-3b4df78c9665.md

# SearchDispatchResult

Details of a dispatch search.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Fulfillment API
  version: 1.0.0
servers:
  - url: https://fulfillment-api.centraldispatch.com
    description: Production server
components:
  schemas:
    SearchDispatchResult:
      type: object
      properties:
        items:
          type: array
          items:
            type: string
          description: A collection of dispatch IDs.
          nullable: true
          example:
            - d159acc0-e89b-12d3-a456-426614174000
        count:
          type: integer
          description: The maximum number of items to be returned in the response.
          format: int32
          example: 1
        totalRecords:
          type: integer
          description: The total count of resources in the collection.
          format: int64
          example: 100
      description: Details of a dispatch search.
```
