vq_ws_.
Creating a credential
1
Open the automation console
Sign in to Vaquill and go to Automation in the sidebar. You must be an owner of the organization; members cannot provision API access.
2
Enable the Workspace API
This creates an installation owned by your organization, not by you personally. It keeps working if you later leave the organization.
3
Create a credential
Give it a name that says what will use it, for example
billing-sync or intake-bot. Choose an expiry.vq_ws_ credential cannot call them. That is deliberate. A credential that could mint credentials would make revoking one meaningless.
There is no rotate operation. Rotating means issuing a second credential, deploying it, then revoking the first, which is the same sequence with none of the ambiguity about which one is live.
Credential properties
The last six characters are a checksum, so a truncated or mistyped credential is rejected before it reaches our database. If you get
invalid-credential immediately on a key you just pasted, check for a copy that cut off the end.Scopes
A credential carries scopes in the formresource:action. Write implies read on the same resource; run does not, so a reporting integration can be given read access without the ability to start billable work.
403 tells you exactly what is missing.
The scope vocabulary is slightly wider than the list above, because it was frozen before every capability shipped. A few names are accepted but govern no endpoint yet. Granting one is harmless and grants nothing, so build against the list above.
Folders have no scope of their own. They are governed by
matters:read and matters:write, because a folder is an organizing device for matter work rather than a resource in its own right.documents:download is separate from documents:read on purpose. Listing document metadata and pulling an original confidential file are different risks, so an integration that only checks ingestion status need not be able to retrieve originals.403 with an insufficient-scope problem document naming the scopes it needed.
Attributing actions to a person
If the work your integration does is initiated by one of your users, send their identifier:400 acting-user-rejected rather than repaired, because a shortened or scrubbed identifier is a different identifier presented as your assertion.
Revoking
Revoke from the automation console or withDELETE /api/v1/workspace/credentials/{credentialId}. Revocation takes effect immediately, including for requests already in flight against a cached credential.
