Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
5 changes: 5 additions & 0 deletions api-reference/fx-payment/reports/get-report.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: "Get a report"
description: "Aggregated view of operations over a time window, partitioned by asset."
openapi: "apis/fx-payment/openapi.yml GET /api/reports"
---
22 changes: 22 additions & 0 deletions apis/fx-account/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -359,8 +359,18 @@ components:
$ref: "#/components/schemas/RequirementsResponse"
tags:
type: array
description: >
System-managed labels attached to the account. Some tags
propagate to operations executed against this account.
items:
$ref: "#/components/schemas/TagResponse"
example:
- key: "psp"
value: "Amazon"
- key: null
value: "hidden"
- key: "compliance-tier"
value: "high"
currentState:
$ref: "#/components/schemas/AccountState"
states:
Expand Down Expand Up @@ -1160,12 +1170,24 @@ components:
- AX
TagResponse:
type: object
description: >
A label attached to a resource. Tags are system-managed — Trace
assigns them based on routing, compliance, and operational criteria.
Clients cannot create, modify, or remove tags via the API.
properties:
key:
type: string
nullable: true
description: >
Category for keyed tags (e.g., `psp`, `compliance-tier`).
`null` for single-value labels.
example: "psp"
value:
type: string
description: >
For keyed tags, the right-hand side of the label. For
single-value labels, the entire tag.
example: "Amazon"
required:
- value
UBOResponse:
Expand Down
Loading
Loading