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
description: Error response for invalid requests that cannot be processed due to client-side errors. This typically occurs when request parameters are missing, malformed, or fail validation rules. The response includes detailed information about the specific errors in the request, including the location of each error and suggestions for fixing it. When receiving this error, check the 'errors' array in the response for specific validation issues that need to be addressed before retrying.
55
+
UnauthorizedErrorResponse:
56
+
type: object
57
+
required:
58
+
- meta
59
+
- error
60
+
properties:
61
+
meta:
62
+
$ref: "#/components/schemas/Meta"
63
+
error:
64
+
$ref: "#/components/schemas/BaseError"
65
+
description: |-
66
+
Error response when authentication has failed or credentials are missing. This occurs when:
67
+
- No authentication token is provided in the request
68
+
- The provided token is invalid, expired, or malformed
69
+
- The token format doesn't match expected patterns
70
+
71
+
To resolve this error, ensure you're including a valid root key in the Authorization header.
50
72
InternalServerErrorResponse:
51
73
type: object
52
74
required:
@@ -64,6 +86,21 @@ components:
64
86
- The request ID in the response can help Unkey support investigate the issue
65
87
- The error is likely temporary and retrying may succeed
66
88
- If the error persists, contact Unkey support with the request ID
89
+
ChproxyMetricsRequestBody:
90
+
type: array
91
+
description: Array of API request metric events to be processed
92
+
items:
93
+
type: object
94
+
additionalProperties: true
95
+
ChproxyMetricsResponseBody:
96
+
type: object
97
+
required:
98
+
- status
99
+
properties:
100
+
status:
101
+
type: string
102
+
description: Processing status
103
+
example: "OK"
67
104
ChproxyRatelimitsRequestBody:
68
105
type: array
69
106
description: Array of ratelimit events to be processed
0 commit comments