Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mintlify/global-accounts/agents/approvals-and-audit.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ When an agent submits an action that is not eligible for automatic execution, Gr
5. Your app shows the customer the requested amount, accounts, and reason.
6. The customer approves or rejects from that trusted surface.
7. Your backend calls `POST /agents/{agentId}/actions/{actionId}/approve` or `.../reject`.
8. Grid executes the action and the `AgentAction` transitions to `APPROVED`, then `COMPLETED` — or `REJECTED` if declined.
8. Grid executes the action and the `AgentAction` transitions to `APPROVED` — or `REJECTED` if declined.

## Approval outcomes

Expand Down
7 changes: 4 additions & 3 deletions mintlify/openapi.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions openapi.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions openapi/openapi.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ post:

If the agent's policy requires approval for this amount (based on execution mode
or approval thresholds), the transaction will be created in a pending state and
must be approved by the platform via `POST /agents/{agentId}/transactions/{transactionId}/approve`.
must be approved by the platform via `POST /agents/{agentId}/actions/{actionId}/approve`.

Once executed, the quote cannot be cancelled.
operationId: agentExecuteQuote
Expand Down
2 changes: 1 addition & 1 deletion openapi/paths/agents/agents_me_transfer-in.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ post:

If the agent's policy requires approval for this amount, the transaction will be
created in a pending state and must be approved by the platform via
`POST /agents/{agentId}/transactions/{transactionId}/approve`.
`POST /agents/{agentId}/actions/{actionId}/approve`.

This endpoint should only be used for external account sources with pull functionality
(e.g. ACH Pull). Otherwise, use the payment instructions on the internal account to
Expand Down
2 changes: 1 addition & 1 deletion openapi/paths/agents/agents_me_transfer-out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ post:

If the agent's policy requires approval for this amount, the transaction will be
created in a pending state and must be approved by the platform via
`POST /agents/{agentId}/transactions/{transactionId}/approve`.
`POST /agents/{agentId}/actions/{actionId}/approve`.
operationId: agentCreateTransferOut
tags:
- Agent Operations
Expand Down
Loading