The whole hunk
from line 13, old and new numbered
/
lines
from line 13
1313
1414- `vault_id: string`
1515
16 Identifier of the vault containing the credential.
17
1618- `credential_id: string`
1719
20 Unique identifier of the credential to validate.
21
1822## Headers
1923
2024- `"anthropic-beta": optional array of AnthropicBeta`
from line 123
119123
120124- `"anthropic-workspace-id": optional string`
121125
126 Optional header to select the Workspace for this request. The value is a Workspace ID (for example, `wrkspc_011CZkZaBF1tNoB5wlCeusgy`).
127
128 Only needed for credentials that can act on more than one Workspace. A credential that belongs to a specific Workspace may omit it; if sent, it must match that Workspace.
129
122130## Returns
123131
124132- `BetaManagedAgentsCredentialValidation object`
from line 187
179187
180188 - `"succeeded"`
181189
190 The token endpoint returned a new access token.
191
182192 - `"failed"`
183193
194 The token endpoint returned an error response. See `http_response` for detail.
195
184196 - `"connect_error"`
185197
198 The token endpoint could not be reached (DNS, TLS, or connection error).
199
186200 - `"no_refresh_token"`
187201
202 No refresh token is stored for the credential, so no exchange was attempted.
203
188204 - `status: BetaManagedAgentsCredentialValidationStatus`
189205
190206 Overall verdict of a credential validation probe.
from line 207
191207
192208 - `"valid"`
193209
210 The credential successfully authenticated against its MCP server.
211
194212 - `"invalid"`
195213
214 The probe reached the MCP server and was rejected, and a refresh (if attempted) did not recover it.
215
196216 - `"unknown"`
217
218 The probe could not determine validity — for example, a transport error or a successful refresh that was not re-probed.
197219
198220 - `validated_at: string`
199221