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

# UpdateBYOKKeyResponse

## Example Usage

```typescript theme={null}
import { UpdateBYOKKeyResponse } from "@openrouter/sdk/models";

let value: UpdateBYOKKeyResponse = {
  data: {
    allowedApiKeyHashes: null,
    allowedModels: null,
    allowedUserIds: null,
    createdAt: "2025-08-24T10:30:00Z",
    disabled: false,
    id: "11111111-2222-3333-4444-555555555555",
    isFallback: false,
    label: "sk-...AbCd",
    provider: "openai",
    sortOrder: 0,
    workspaceId: "550e8400-e29b-41d4-a716-446655440000",
  },
};
```

## Fields

| Field  | Type                                    | Required             | Description | Example                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| ------ | --------------------------------------- | -------------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `data` | [models.BYOKKey](../models/byokkey.mdx) | :heavy\_check\_mark: | N/A         | \{<br />"allowed\_api\_key\_hashes": null,<br />"allowed\_models": null,<br />"allowed\_user\_ids": null,<br />"created\_at": "2025-08-24T10:30:00Z",<br />"disabled": false,<br />"id": "11111111-2222-3333-4444-555555555555",<br />"is\_fallback": false,<br />"label": "sk-...AbCd",<br />"name": "Production OpenAI Key",<br />"provider": "openai",<br />"sort\_order": 0,<br />"workspace\_id": "550e8400-e29b-41d4-a716-446655440000"<br />} |
