GET /v1/operations or GET /v1/operations/{id} with the operations:read scope to track current state.
Read only operations owned by your grant
An operation belongs to one resource owner, pairwise subject, and client. Perflo checks all three values against the current grant on every read. The client and grant must remain active and the provider binding must remain connected. If the grant is revoked or the provider is disconnected, Perflo rejects the protected read. The operation remains durable, but the revoked grant cannot poll it. Complete the normal authorization or reconnection flow before reading it through a new valid grant.GET /v1/operations returns up to 100 recent matching operations. GET /v1/operations/{id} returns 404 when the identifier does not belong to the current subject and client.
The public operation contains these fields:
The response omits provider credentials, request payloads, identity fields, and provider-specific reconciliation data.
Interpret operation states
Each state tells you whether a mutation can still be sent or requires observation:succeeded, failed, and cancelled are terminal. An unresolved indeterminate operation remains recorded and never becomes cancelled because of age.
Follow the legal state changes
Perflo permits only these forward transitions:acceptedtosubmitting,failed, orcancelledsubmittingtosubmitted,succeeded,failed, orindeterminatesubmittedtosucceeded,failed, orindeterminateindeterminatetosubmitted,succeeded, orfailedafter an exact status read proves the result
Handle an indeterminate result
Anindeterminate state means the network failed after Perflo may have sent the mutation. Settle the operation through reads only.
Do not create a new idempotency key or repeat the mutation. While your grant and provider binding remain active, continue reading the operation until Perflo records a proven result. If access is revoked or the provider is disconnected, stop polling with that grant. Some cases can remain under review without a final state.
See Retry a financial request safely for the request binding that returns the same operation after a lost response.