Reports | API & MCP Reference | Archera
Report download operations
Partner Archera Premiums and Rebates by Organization
Endpoint
get/beta/v1/org/{org_id}/reports/partner_archera_premiums_and_rebates_by_child_org
Description
Monthly allocation of Archera premiums, rebates, and savings across child organizations for a channel partner. One row per child org with that org's invoice totals.
Path parameters
org_id: string · uuid Required
Query parameters
format: string · enum Optional
Response format: 'json' (default) or 'csv'
Default:json
Possible values:json,csvyear: integer Required
Billing year (e.g. 2026)month: integer · min: 1 · max: 12 Required
Billing month (1-12)
Responses
200 OK
application/jsonorg_id: string Optional
Child organization identifierorg_name: string Optional
Child organization namearchera_premiums: number Optional
Archera premiums for this organizationrebates: number Optional
Rebates for this organizationgross_savings: number Optional
Gross savings for this organizationnet_savings: number Optional
Net savings for this organization
400 Bad request
401 Unauthorized
403 Forbidden
404 Not found
405 Method not allowed
409 Conflict
422 Unprocessable Content
500 Internal server error
default Default error response
Example Request
GET /beta/v1/org/{org_id}/reports/partner_archera_premiums_and_rebates_by_child_org?year=1&month=1 HTTP/1.1
Accept: */*
Example Response
[
{
"org_id": "text",
"org_name": "text",
"archera_premiums": 1,
"rebates": 1,
"gross_savings": 1,
"net_savings": 1
}
]
Archera Premiums and Rebates by Account
Endpoint
get/beta/v1/org/{org_id}/reports/archera_premiums_and_rebates_by_account
Description
Monthly allocation of Archera premiums, rebates, and savings by cloud account.
Path parameters
org_id: string · uuid Required
Query parameters
format: string · enum Optional
Response format: 'json' (default) or 'csv'
Default:json
Possible values:json,csvyear: integer Required
Billing year (e.g. 2026)month: integer · min: 1 · max: 12 Required
Billing month (1-12)provider: string · enum Required
Cloud provider (aws, azure, gcp, unknown)
Possible values:aws,azure,gcp
Responses
- 200 OK
application/jsonaccount_id: string Optional
Cloud account identifieraccount_name: string Optional
Human-readable account namearchera_premiums: number Optional
Archera premiums allocated to this accountrebates: number Optional
Rebates allocated to this accountgross_savings: number Optional
Gross savings allocated to this accountnet_savings: number Optional
Net savings allocated to this account
Example Request
GET /beta/v1/org/{org_id}/reports/archera_premiums_and_rebates_by_account?year=1&month=1&provider=aws HTTP/1.1
Accept: */*
Example Response
[
{
"account_id": "text",
"account_name": "text",
"archera_premiums": 1,
"rebates": 1,
"gross_savings": 1,
"net_savings": 1
}
]
Archera Premiums and Rebates Daily
Endpoint
get/beta/v1/org/{org_id}/reports/archera_premiums_and_rebates_daily
Description
Daily allocation of Archera premiums, rebates, and savings over a calendar month.
Path parameters
org_id: string · uuid Required
Responses
- 200 OK
application/jsondate: string Optional
Calendar date within the requested monthgross_savings: number Optional
Gross savings allocated to this datearchera_premiums: number Optional
Archera premiums allocated to this daterebates: number Optional
Rebates allocated to this datenet_savings: number Optional
Net savings allocated to this date
Example Request
GET /beta/v1/org/{org_id}/reports/archera_premiums_and_rebates_daily?year=1&month=1&provider=aws HTTP/1.1
Accept: */*
Example Response
[
{
"date": "2026-07-27",
"gross_savings": 1,
"archera_premiums": 1,
"rebates": 1,
"net_savings": 1
}
]
Archera Premiums and Rebates by Account Daily
Endpoint
get/beta/v1/org/{org_id}/reports/archera_premiums_and_rebates_by_account_daily
Description
Daily allocation of Archera premiums, rebates, and savings by cloud account over a calendar month.
Path parameters
org_id: string · uuid Required
Responses
- 200 OK
application/jsondate: string Optional
Calendar date within the requested monthaccount_id: string Optional
Cloud account identifieraccount_name: string Optional
Human-readable account namegross_savings: number Optional
Gross savings allocated to this account on this datearchera_premiums: number Optional
Archera premiums allocated to this account on this daterebates: number Optional
Rebates allocated to this account on this datenet_savings: number Optional
Net savings allocated to this account on this date
Example Request
GET /beta/v1/org/{org_id}/reports/archera_premiums_and_rebates_by_account_daily?year=1&month=1&provider=aws HTTP/1.1
Accept: */*
Example Response
[
{
"date": "2026-07-27",
"account_id": "text",
"account_name": "text",
"gross_savings": 1,
"archera_premiums": 1,
"rebates": 1,
"net_savings": 1
}
]
Last updated 10 days ago