curl --request POST \
--url https://api.app.shinzo.ai/auth/revoke_ingest_token/{tokenUuid} \
--header 'Authorization: Bearer <token>'Revoke an existing ingest token to prevent further use.
curl --request POST \
--url https://api.app.shinzo.ai/auth/revoke_ingest_token/{tokenUuid} \
--header 'Authorization: Bearer <token>'curl -X POST https://api.app.shinzo.ai/auth/revoke_ingest_token/itk_abc123def456 \
-H "Authorization: Bearer <jwt_token>"
{
"message": "Token revoked successfully",
"uuid": "itk_abc123def456",
"revoked_at": "2025-01-20T16:00:00Z"
}
| Code | Description |
|---|---|
200 | Token revoked successfully |
401 | Invalid or missing JWT token |
404 | Token not found |