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

Query parameters

Responses

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

Query parameters

Responses

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

Responses

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

Responses

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