curl --request POST \
--url http://localhost:8000/accounts/delete-credential/{account_name}/{connector_name} \
--header 'Authorization: Basic <encoded-value>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Delete a specific connector credential for an account.
Args: account_name: Name of the account connector_name: Name of the connector to delete credentials for
Returns: Success message when credential is deleted
Raises: HTTPException: 404 if credential not found
curl --request POST \
--url http://localhost:8000/accounts/delete-credential/{account_name}/{connector_name} \
--header 'Authorization: Basic <encoded-value>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Was this page helpful?