You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .speakeasy/out.openapi.yaml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -34155,7 +34155,7 @@ paths:
34155
34155
- $ref: "#/components/parameters/AppCategories"
34156
34156
/keys/{hash}:
34157
34157
delete:
34158
-
description: 'Delete an existing API key. [Management key](/docs/guides/overview/auth/management-api-keys) required.'
34158
+
description: 'Delete an existing API key. Authenticate with a [management key](/docs/guides/overview/auth/management-api-keys), or with a Connect client secret. A client secret reaches only the keys that same client created; any other key responds as if it does not exist.'
34159
34159
operationId: 'deleteKeys'
34160
34160
parameters:
34161
34161
- description: 'The hash identifier of the API key to delete'
@@ -34505,7 +34505,7 @@ paths:
34505
34505
- 'API Keys'
34506
34506
x-speakeasy-name-override: 'get'
34507
34507
patch:
34508
-
description: 'Update an existing API key. [Management key](/docs/guides/overview/auth/management-api-keys) required.'
34508
+
description: 'Update an existing API key. Authenticate with a [management key](/docs/guides/overview/auth/management-api-keys), or with a Connect client secret. A client secret reaches only the keys that same client created; any other key responds as if it does not exist.'
34509
34509
operationId: 'updateKeys'
34510
34510
parameters:
34511
34511
- description: 'The hash identifier of the API key to update'
Copy file name to clipboardExpand all lines: docs/sdks/apikeys/README.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -174,7 +174,7 @@ with OpenRouter(
174
174
175
175
## delete
176
176
177
-
Delete an existing API key. [Management key](/docs/guides/overview/auth/management-api-keys) required.
177
+
Delete an existing API key. Authenticate with a [management key](/docs/guides/overview/auth/management-api-keys), or with a Connect client secret. A client secret reaches only the keys that same client created; any other key responds as if it does not exist.
178
178
179
179
### Example Usage
180
180
@@ -272,7 +272,7 @@ with OpenRouter(
272
272
273
273
## update
274
274
275
-
Update an existing API key. [Management key](/docs/guides/overview/auth/management-api-keys) required.
275
+
Update an existing API key. Authenticate with a [management key](/docs/guides/overview/auth/management-api-keys), or with a Connect client secret. A client secret reaches only the keys that same client created; any other key responds as if it does not exist.
Copy file name to clipboardExpand all lines: src/openrouter/api_keys.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -887,7 +887,7 @@ def delete(
887
887
) ->operations.DeleteKeysResponse:
888
888
r"""Delete an API key
889
889
890
-
Delete an existing API key. [Management key](/docs/guides/overview/auth/management-api-keys) required.
890
+
Delete an existing API key. Authenticate with a [management key](/docs/guides/overview/auth/management-api-keys), or with a Connect client secret. A client secret reaches only the keys that same client created; any other key responds as if it does not exist.
891
891
892
892
:param hash: The hash identifier of the API key to delete
893
893
:param http_referer: The app identifier should be your app's URL and is used as the primary identifier for rankings.
@@ -1020,7 +1020,7 @@ async def delete_async(
1020
1020
) ->operations.DeleteKeysResponse:
1021
1021
r"""Delete an API key
1022
1022
1023
-
Delete an existing API key. [Management key](/docs/guides/overview/auth/management-api-keys) required.
1023
+
Delete an existing API key. Authenticate with a [management key](/docs/guides/overview/auth/management-api-keys), or with a Connect client secret. A client secret reaches only the keys that same client created; any other key responds as if it does not exist.
1024
1024
1025
1025
:param hash: The hash identifier of the API key to delete
1026
1026
:param http_referer: The app identifier should be your app's URL and is used as the primary identifier for rankings.
@@ -1424,7 +1424,7 @@ def update(
1424
1424
) ->operations.UpdateKeysResponse:
1425
1425
r"""Update an API key
1426
1426
1427
-
Update an existing API key. [Management key](/docs/guides/overview/auth/management-api-keys) required.
1427
+
Update an existing API key. Authenticate with a [management key](/docs/guides/overview/auth/management-api-keys), or with a Connect client secret. A client secret reaches only the keys that same client created; any other key responds as if it does not exist.
1428
1428
1429
1429
:param hash: The hash identifier of the API key to update
1430
1430
:param http_referer: The app identifier should be your app's URL and is used as the primary identifier for rankings.
@@ -1586,7 +1586,7 @@ async def update_async(
1586
1586
) ->operations.UpdateKeysResponse:
1587
1587
r"""Update an API key
1588
1588
1589
-
Update an existing API key. [Management key](/docs/guides/overview/auth/management-api-keys) required.
1589
+
Update an existing API key. Authenticate with a [management key](/docs/guides/overview/auth/management-api-keys), or with a Connect client secret. A client secret reaches only the keys that same client created; any other key responds as if it does not exist.
1590
1590
1591
1591
:param hash: The hash identifier of the API key to update
1592
1592
:param http_referer: The app identifier should be your app's URL and is used as the primary identifier for rankings.
0 commit comments