Skip to content

Commit b207a56

Browse files
committed
Fix review comments
1 parent df3ae35 commit b207a56

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

docs/rest-apis/gateway/webbroker-api-management.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ Required roles: `admin`, `consumer`
683683
{
684684
"name": "my-production-key",
685685
"displayName": "My Production Key",
686-
"apiKey": "apip_1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
686+
"apiKey": "***abcdef",
687687
"apiId": "reading-list-api-v1.0",
688688
"status": "active",
689689
"createdAt": "2026-04-01T10:30:00Z",
@@ -804,7 +804,9 @@ Update an API key with a custom value instead of auto-generating one.
804804
805805
```json
806806
{
807-
"name": "my-production-key"
807+
"displayName": "Updated",
808+
"apiKey": "custom-key-999",
809+
"issuer": "portal"
808810
}
809811
```
810812

@@ -909,5 +911,5 @@ Required roles: `admin`, `consumer`
909911
|---|---|---|---|
910912
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|API key revoked successfully|[APIKeyRevocationResponse](schemas.md#schemaapikeyrevocationresponse)|
911913
|400|[Bad Request](https://tools.ietf.org/html/rfc7231#section-6.5.1)|Invalid configuration (validation failed)|[ErrorResponse](schemas.md#schemaerrorresponse)|
912-
|404|[Not Found](https://tools.ietf.org/html/rfc7231#section-6.5.4)|WebBroker API or API key not found|[ErrorResponse](schemas.md#schemaerrorresponse)|
914+
|404|[Not Found](https://tools.ietf.org/html/rfc7231#section-6.5.4)|WebBroker API not found|[ErrorResponse](schemas.md#schemaerrorresponse)|
913915
|500|[Internal Server Error](https://tools.ietf.org/html/rfc7231#section-6.6.1)|Internal server error|[ErrorResponse](schemas.md#schemaerrorresponse)|

gateway/gateway-controller/api/management-openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1787,7 +1787,7 @@ paths:
17871787
schema:
17881788
$ref: '#/components/schemas/ErrorResponse'
17891789
'404':
1790-
description: WebBroker API or API key not found
1790+
description: WebBroker API not found
17911791
content:
17921792
application/json:
17931793
schema:

0 commit comments

Comments
 (0)