Quandela · Arazzo Workflow
Rotate and audit a Quandela Cloud Job Token
Version 1.0.0
Mint a replacement Cloud Job Token, read the outgoing token's per-platform consumption ledger, then revoke and delete it — the full credential rotation Quandela supports entirely over the API.
View Spec
View on GitHub
Quantum ComputingPhotonic QuantumPhotonicsSingle Photon SourcesQuantum HardwareQuantum CloudQPUPercevalPython SDKQuantum Random Number GenerationQuantum SimulationVariational Quantum AlgorithmsQuantum ChemistryGraph AlgorithmsJob OrchestrationOpen-SourceFranceArazzoWorkflows
Provider
Workflows
rotate-and-audit-job-token
Replace a Cloud Job Token, capturing its consumption before destroying it.
1
inspect-outgoing-token
$sourceDescriptions.tokens.get_api_tokens_by_token_id
Read the full Token object — valid, is_revoked, is_explorer_token, is_apikey, priority, user_priority, expiration_date, last_used_time, count — before changing anything.
2
capture-usage
$sourceDescriptions.tokens.get_api_tokens_usage_report
Capture the outgoing token's consumption ledger BEFORE deletion — per-platform nb_jobs, duration_seconds, credits and free_credits. Once the token is deleted this history is no longer addressable by token_id.
3
mint-replacement-token
$sourceDescriptions.tokens.post_api_tokens
Mint the replacement first, so the account is never without a working job credential.
4
verify-replacement-listed
$sourceDescriptions.tokens.get_api_tokens
Confirm the new token is present and active. This is the API's only paginated collection — limit/offset, no cursor.
5
revoke-outgoing-token
$sourceDescriptions.tokens.post_api_tokens_revoke
Suspend the outgoing token. Reversible via post_api_tokens_reopen if the cutover needs rolling back.
6
delete-outgoing-token
$sourceDescriptions.tokens.post_api_tokens_delete_by_ids
Permanently delete the retired token. Fails with 400 "Tokens not found | Can't delete the current active token" if it is the credential in use, and 403 if it belongs to another user. Run only after the replacement is confirmed working.