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

# List Outbound Requests

> List outbound requests

Returns a paginated list of outbound requests for the organization.

**Permission:** `outbound_requests:read`

## Query parameters

<ParamField query="page" type="number" default="1">
  1-indexed page number.
</ParamField>

<ParamField query="limit" type="number" default="25">
  Number of results per page (max 100).
</ParamField>

<ParamField query="status" type="string">
  Filter by request status. One of `pending`, `pending_checkout`, `denied`, `fulfilling`,
  `fulfilled`, `cancelled`.
</ParamField>

<ParamField query="fboAccountId" type="string">
  Filter by FBO account ID
</ParamField>

## Response

```json theme={null}
{
  "data": [
    {
      "id": "jd7abc123xyz",
      "fboAccountId": "m97fbo456",
      "organizationId": "k57orgxyz",
      "status": "pending",
      "totalItems": 2,
      "approvedBySystem": false,
      "notes": "Ship to primary address",
      "createdAt": "2025-06-15T09:00:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "hasMore": false
  }
}
```
