Increase Agentic Access
Increase exposes 238 API operations that an AI agent could call, of which 132 are state-changing ‘acting’ operations. This is a recommended x-agentic-access execution contract — the scope, audience, consequence tier, short-lived token constraints, and escalation each action should carry before it is handed to an autonomous agent.
By consequence: 106 read, 67 write, 64 physical, and 1 safety-critical.
1 operation are classed safety-critical and should require human-in-the-loop approval at runtime.
Contracts are classified heuristically from the provider’s OpenAPI and refresh on every APIs.io network build; audience is bound per deployment. The model follows Curity’s Access Intelligence (apidays Munich 2026). Browse every provider’s agent contracts at agentic-access.apis.io.
By consequence
Highest-consequence actions
The physical and safety-critical operations an agent could invoke — the ones that most warrant scoped tokens, tight TTLs, and escalation. Full per-operation contracts are in the source below.
| Method | Path | Consequence | Human-in-loop |
|---|---|---|---|
| POST | /check_transfers/{check_transfer_id}/stop_payment | safety-critical | required |
| POST | /account_transfers | physical | conditional |
| POST | /account_transfers/{account_transfer_id}/approve | physical | conditional |
| POST | /account_transfers/{account_transfer_id}/cancel | physical | conditional |
| POST | /ach_transfers | physical | conditional |
| POST | /ach_transfers/{ach_transfer_id}/approve | physical | conditional |
| POST | /ach_transfers/{ach_transfer_id}/cancel | physical | conditional |
| POST | /card_disputes/{card_dispute_id}/withdraw | physical | conditional |
| POST | /card_push_transfers | physical | conditional |
| POST | /card_push_transfers/{card_push_transfer_id}/approve | physical | conditional |
| POST | /card_push_transfers/{card_push_transfer_id}/cancel | physical | conditional |
| POST | /check_deposits | physical | conditional |
| POST | /check_transfers | physical | conditional |
| POST | /check_transfers/{check_transfer_id}/approve | physical | conditional |
| POST | /check_transfers/{check_transfer_id}/cancel | physical | conditional |
| POST | /fednow_transfers | physical | conditional |
| POST | /fednow_transfers/{fednow_transfer_id}/approve | physical | conditional |
| POST | /fednow_transfers/{fednow_transfer_id}/cancel | physical | conditional |
| POST | /inbound_ach_transfers/{inbound_ach_transfer_id}/create_notification_of_change | physical | conditional |
| POST | /inbound_ach_transfers/{inbound_ach_transfer_id}/decline | physical | conditional |
| POST | /inbound_ach_transfers/{inbound_ach_transfer_id}/transfer_return | physical | conditional |
| POST | /inbound_check_deposits/{inbound_check_deposit_id}/decline | physical | conditional |
| POST | /inbound_check_deposits/{inbound_check_deposit_id}/return | physical | conditional |
| POST | /inbound_wire_transfers/{inbound_wire_transfer_id}/reverse | physical | conditional |
| POST | /intrafi_account_enrollments | physical | conditional |
Source
Agentic Access
generated: '2026-07-15'
method: generated
source: openapi/increase-openapi.json
description: Recommended x-agentic-access execution contracts, classified heuristically from
the OpenAPI. A governance starting point for exposing this API to AI agents — review and bind
audience per deployment. See research/curity/agentic-governance/.
summary:
operations: 238
by_action_class:
connected: 106
acting: 132
by_consequence:
read: 106
write: 67
physical: 64
safety-critical: 1
human_in_the_loop_required: 1
operations:
- path: /account_numbers
method: get
operationId: list_account_numbers
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /account_numbers
method: post
operationId: create_an_account_number
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /account_numbers/{account_number_id}
method: get
operationId: retrieve_an_account_number
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /account_numbers/{account_number_id}
method: patch
operationId: update_an_account_number
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /account_statements
method: get
operationId: list_account_statements
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /account_statements/{account_statement_id}
method: get
operationId: retrieve_an_account_statement
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /account_transfers
method: get
operationId: list_account_transfers
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /account_transfers
method: post
operationId: create_an_account_transfer
x-agentic-access:
action-class: acting
consequence: physical
subject: required
audience: null
token:
max-ttl: 300
exchange: true
purpose-required: true
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /account_transfers/{account_transfer_id}
method: get
operationId: retrieve_an_account_transfer
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /account_transfers/{account_transfer_id}/approve
method: post
operationId: approve_an_account_transfer
x-agentic-access:
action-class: acting
consequence: physical
subject: required
audience: null
token:
max-ttl: 300
exchange: true
purpose-required: true
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /account_transfers/{account_transfer_id}/cancel
method: post
operationId: cancel_an_account_transfer
x-agentic-access:
action-class: acting
consequence: physical
subject: required
audience: null
token:
max-ttl: 300
exchange: true
purpose-required: true
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /accounts
method: get
operationId: list_accounts
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /accounts
method: post
operationId: create_an_account
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /accounts/{account_id}
method: get
operationId: retrieve_an_account
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /accounts/{account_id}
method: patch
operationId: update_an_account
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /accounts/{account_id}/balance
method: get
operationId: retrieve_an_account_balance
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /accounts/{account_id}/close
method: post
operationId: close_an_account
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /accounts/{account_id}/intrafi_balance
method: get
operationId: get_intrafi_balance
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /ach_prenotifications
method: get
operationId: list_ach_prenotifications
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /ach_prenotifications
method: post
operationId: create_an_ach_prenotification
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /ach_prenotifications/{ach_prenotification_id}
method: get
operationId: retrieve_an_ach_prenotification
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /ach_transfers
method: get
operationId: list_ach_transfers
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /ach_transfers
method: post
operationId: create_an_ach_transfer
x-agentic-access:
action-class: acting
consequence: physical
subject: required
audience: null
token:
max-ttl: 300
exchange: true
purpose-required: true
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /ach_transfers/{ach_transfer_id}
method: get
operationId: retrieve_an_ach_transfer
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /ach_transfers/{ach_transfer_id}/approve
method: post
operationId: approve_an_ach_transfer
x-agentic-access:
action-class: acting
consequence: physical
subject: required
audience: null
token:
max-ttl: 300
exchange: true
purpose-required: true
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /ach_transfers/{ach_transfer_id}/cancel
method: post
operationId: cancel_a_pending_ach_transfer
x-agentic-access:
action-class: acting
consequence: physical
subject: required
audience: null
token:
max-ttl: 300
exchange: true
purpose-required: true
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /card_disputes
method: get
operationId: list_card_disputes
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /card_disputes
method: post
operationId: create_a_card_dispute
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /card_disputes/{card_dispute_id}
method: get
operationId: retrieve_a_card_dispute
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /card_disputes/{card_dispute_id}/submit_user_submission
method: post
operationId: submit_a_user_submission_for_a_card_dispute
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /card_disputes/{card_dispute_id}/withdraw
method: post
operationId: withdraw_a_card_dispute
x-agentic-access:
action-class: acting
consequence: physical
subject: required
audience: null
token:
max-ttl: 300
exchange: true
purpose-required: true
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /card_payments
method: get
operationId: list_card_payments
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /card_payments/{card_payment_id}
method: get
operationId: retrieve_a_card_payment
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /card_purchase_supplements
method: get
operationId: list_card_purchase_supplements
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /card_purchase_supplements/{card_purchase_supplement_id}
method: get
operationId: retrieve_a_card_purchase_supplement
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /card_push_transfers
method: get
operationId: list_card_push_transfers
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /card_push_transfers
method: post
operationId: create_a_card_push_transfer
x-agentic-access:
action-class: acting
consequence: physical
subject: required
audience: null
token:
max-ttl: 300
exchange: true
purpose-required: true
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /card_push_transfers/{card_push_transfer_id}
method: get
operationId: retrieve_a_card_push_transfer
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /card_push_transfers/{card_push_transfer_id}/approve
method: post
operationId: approve_a_card_push_transfer
x-agentic-access:
action-class: acting
consequence: physical
subject: required
audience: null
token:
max-ttl: 300
exchange: true
purpose-required: true
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /card_push_transfers/{card_push_transfer_id}/cancel
method: post
operationId: cancel_a_pending_card_push_transfer
x-agentic-access:
action-class: acting
consequence: physical
subject: required
audience: null
token:
max-ttl: 300
exchange: true
purpose-required: true
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /card_tokens
method: get
operationId: list_card_tokens
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /card_tokens/{card_token_id}
method: get
operationId: retrieve_a_card_token
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /card_tokens/{card_token_id}/capabilities
method: get
operationId: retrieve_the_capabilities_of_a_card_token
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /card_validations
method: get
operationId: list_card_validations
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /card_validations
method: post
operationId: create_a_card_validation
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /card_validations/{card_validation_id}
method: get
operationId: retrieve_a_card_validation
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /cards
method: get
operationId: list_cards
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /cards
method: post
operationId: create_a_card
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /cards/{card_id}
method: get
operationId: retrieve_a_card
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /cards/{card_id}
method: patch
operationId: update_a_card
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /cards/{card_id}/create_details_iframe
method: post
operationId: create_a_card_details_iframe
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /cards/{card_id}/details
method: get
operationId: retrieve_sensitive_details_for_a_card
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /cards/{card_id}/update_pin
method: post
operationId: update_a_cards_pin
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /check_deposits
method: get
operationId: list_check_deposits
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /check_deposits
method: post
operationId: create_a_check_deposit
x-agentic-access:
action-class: acting
consequence: physical
subject: required
audience: null
token:
max-ttl: 300
exchange: true
purpose-required: true
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /check_deposits/{check_deposit_id}
method: get
operationId: retrieve_a_check_deposit
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /check_transfers
method: get
operationId: list_check_transfers
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /check_transfers
method: post
operationId: create_a_check_transfer
x-agentic-access:
action-class: acting
consequence: physical
subject: required
audience: null
token:
max-ttl: 300
exchange: true
purpose-required: true
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /check_transfers/{check_transfer_id}
method: get
operationId: retrieve_a_check_transfer
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /check_transfers/{check_transfer_id}/approve
method: post
operationId: approve_a_check_transfer
x-agentic-access:
action-class: acting
consequence: physical
subject: required
audience: null
token:
max-ttl: 300
exchange: true
purpose-required: true
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /check_transfers/{check_transfer_id}/cancel
method: post
operationId: cancel_a_pending_check_transfer
x-agentic-access:
action-class: acting
consequence: physical
subject: required
audience: null
token:
max-ttl: 300
exchange: true
purpose-required: true
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /check_transfers/{check_transfer_id}/stop_payment
method: post
operationId: stop_payment_on_a_check_transfer
x-agentic-access:
action-class: acting
consequence: safety-critical
subject: required
audience: null
token:
max-ttl: 120
exchange: true
purpose-required: true
proof-of-possession: true
escalation:
human-in-the-loop: required
audit: required
- path: /declined_transactions
method: get
operationId: list_declined_transactions
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /declined_transactions/{declined_transaction_id}
method: get
operationId: retrieve_a_declined_transaction
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /digital_card_profiles
method: get
operationId: list_card_profiles
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /digital_card_profiles
method: post
operationId: create_a_digital_card_profile
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /digital_card_profiles/{digital_card_profile_id}
method: get
operationId: retrieve_a_digital_card_profile
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /digital_card_profiles/{digital_card_profile_id}/archive
method: post
operationId: archive_a_digital_card_profile
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /digital_card_profiles/{digital_card_profile_id}/clone
method: post
operationId: clones_a_digital_card_profile
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /digital_wallet_tokens
method: get
operationId: list_digital_wallet_tokens
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /digital_wallet_tokens/{digital_wallet_token_id}
method: get
operationId: retrieve_a_digital_wallet_token
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /entities
method: get
operationId: list_entities
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /entities
method: post
operationId: create_an_entity
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /entities/{entity_id}
method: get
operationId: retrieve_an_entity
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /entities/{entity_id}
method: patch
operationId: update_an_entity
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /entities/{entity_id}/archive
method: post
operationId: archive_an_entity
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /entity_beneficial_owners
method: get
operationId: list_beneficial_owners
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /entity_beneficial_owners
method: post
operationId: create_a_beneficial_owner
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /entity_beneficial_owners/{entity_beneficial_owner_id}
method: get
operationId: retrieve_a_beneficial_owner
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /entity_beneficial_owners/{entity_beneficial_owner_id}
method: patch
operationId: update_a_beneficial_owner
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /entity_beneficial_owners/{entity_beneficial_owner_id}/archive
method: post
operationId: archive_a_beneficial_owner
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /entity_onboarding_sessions
method: get
operationId: list_entity_onboarding_session
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /entity_onboarding_sessions
method: post
operationId: create_an_entity_onboarding_session
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /entity_onboarding_sessions/{entity_onboarding_session_id}
method: get
operationId: retrieve_an_entity_onboarding_session
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /entity_onboarding_sessions/{entity_onboarding_session_id}/expire
method: post
operationId: expire_an_entity_onboarding_session
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /entity_supplemental_documents
method: get
operationId: list_entity_supplemental_document_submissions
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /entity_supplemental_documents
method: post
operationId: create_a_supplemental_document_for_an_entity
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /event_subscriptions
method: get
operationId: list_event_subscriptions
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /event_subscriptions
method: post
operationId: create_an_event_subscription
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /event_subscriptions/{event_subscription_id}
method: get
operationId: retrieve_an_event_subscription
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /event_subscriptions/{event_subscription_id}
method: patch
operationId: update_an_event_subscription
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /events
method: get
operationId: list_events
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /events/{event_id}
method: get
operationId: retrieve_an_event
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /exports
method: get
operationId: list_exports
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /exports
method: post
operationId: create_an_export
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /exports/{export_id}
method: get
operationId: retrieve_an_export
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /external_accounts
method: get
operationId: list_external_accounts
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /external_accounts
method: post
operationId: create_an_external_account
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /external_accounts/{external_account_id}
method: get
operationId: retrieve_an_external_account
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /external_accounts/{external_account_id}
method: patch
operationId: update_an_external_account
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /fednow_transfers
method: get
operationId: list_fednow_transfers
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /fednow_transfers
method: post
operationId: create_a_fednow_transfer
x-agentic-access:
action-class: acting
consequence: physical
subject: required
audience: null
token:
max-ttl: 300
exchange: true
purpose-required: true
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /fednow_transfers/{fednow_transfer_id}
method: get
operationId: retrieve_a_fednow_transfer
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /fednow_transfers/{fednow_transfer_id}/approve
method: post
operationId: approve_a_fednow_transfer
x-agentic-access:
action-class: acting
consequence: physical
subject: required
audience: null
token:
max-ttl: 300
exchange: true
purpose-required: true
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /fednow_transfers/{fednow_transfer_id}/cancel
method: post
operationId: cancel_a_pending_fednow_transfer
x-agentic-access:
action-class: acting
consequence: physical
subject: required
audience: null
token:
max-ttl: 300
exchange: true
purpose-required: true
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /file_links
method: post
operationId: create_a_file_link
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- path: /files
method: get
operationId: list_files
x-agentic-access:
action-class: connected
consequence: read
subject: optional
token:
max-ttl: 3600
audit: none
- path: /files
method: post
operationId: create_a_file
x-agentic-access:
action-class: acting
consequence: write
subject: required
audience: null
token:
max-ttl: 900
escalation:
human-in-the-loop: conditional
triggers:
- abnormal
- high-value
audit: required
- p
# --- truncated at 32 KB (76 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/increase/refs/heads/main/agentic-access/increase-agentic-access.yml