# Get provider account invoice for a month

```
GET https://mgmt.storage.dev/v1/providers/:provider_id/account/invoices/:month
```

Returns the provider's consolidated invoice for the specified month. This invoice aggregates charges across all member organizations under the provider.

## Request

### Path Parameters

**provider_id** string required  
Provider ID

**month** string required  
Month in format YYYY-MM

## Responses

- 200  
- default

OK

- application/json

- Schema
- Example (auto)

**Schema**

**data** object

**org_id** string required  
Organization ID

**plan_name** string required  
Name of the plan

**charges** object[] required  
List of charges in the invoice

Array [
  
  **id** string required  
  Unique identifier for the charge  
  
  **name** string required  
  User friendly name of the charge  
  
  **quantity** double required  
  Number of units consumed  
  
  **unit** string required  
  Consumption unit  
  
  **total** double required  
  Total cost for the charge  
  
  **tiers** object[] required  
  Array [
    
    **name** string required  
    
    **quantity** double required  
    
    **starting_after** double required  
    
    **price** double required  
    
    **subtotal** double required  
    
  ]  
  
  **charged_quantity** double required  
  Actual number of units charged for  
  
]

**subtotal** double required  
Amount before any credits/discounts/minimum commitments

**total** double required  
Total payable amount

**created_at** date-time required  
RFC3339 timestamp when this invoice was generated

**Example:** `2021-09-01T12:00:00Z`

**last_modified** date-time required  
RFC3339 timestamp when this invoice was last modified

**Example:** `2021-09-01T12:00:00Z`

**starting_on** date-time required  
RFC3339 starting time for usage period during which items were added to this invoice

**Example:** `2021-09-01T12:00:00Z`

**ending_before** date-time required  
RFC3339 ending time for usage period during which items were added to this invoice

**Example:** `2021-09-01T12:00:00Z`

**status** string required  
- `DRAFT` - Invoice can be modified as the billing period progresses
- `FINALIZED` - Invoice is locked and can't be modified
- `PAID` - Payment has been collected
- `PAST_DUE` - Payment is overdue

**Possible values:** [`DRAFT`, `FINALIZED`, `PAID`, `PAST_DUE`]

**memo** string  
Human-readable description explaining the billing context for this invoice

**minimum_commit** double  
Volume commitment amount applied to the invoice

**credits** double  
Credits applied to the invoice

```json
{

"data": {

"org_id": "string",

"plan_name": "string",

"charges": [

{

"id": "string",

"name": "string",

"quantity": 0,

"unit": "string",

"total": 0,

"tiers": [

{

"name": "string",

"quantity": 0,

"starting_after": 0,

"price": 0,

"subtotal": 0

}

],

"charged_quantity": 0

}

],

"subtotal": 0,

"total": 0,

"created_at": "2021-09-01T12:00:00Z",

"last_modified": "2021-09-01T12:00:00Z",

"starting_on": "2021-09-01T12:00:00Z",

"ending_before": "2021-09-01T12:00:00Z",

"status": "DRAFT",

"memo": "string",

"minimum_commit": 0,

"credits": 0

}

}
```

Unexpected error

- application/json

- Schema
- Example (auto)

**Schema**

**message** string

```json
{

"message": "string"

}
```

#### Authorization: X-Tigris-Signature

```markdown
name: X-Tigris-Signature  
type: apiKey  
in: header  
description: HMAC-SHA256 of the canonical request signed using the signing key.  
To create the signature, concatenate the HTTP method, URL, timestamp, and nonce with a newline character in between.  
Then, calculate the HMAC-SHA256 of the concatenated string using the signing key. Example:

Create the `canonical_request` as:
```
POST
https://mgmt.storage.dev/provider/your-provider-id/orgs/user-org-id/provision
1731703213870
f8d133cb-5a42-47b1-9ef2-874bb55bab72
```
Then, calculate HMAC-SHA256 of the canonical request using the signing key as:
```
Signature = hex(sha256sign(canonical_request, "signing_key"))
```
```

name: X-Tigris-Nonce  
type: apiKey  
in: header  
description: Random unique string to identify the request and prevent replay attacks. Example: "f8d133cb-5a42-47b1-9ef2-874bb55bab72"
```

```

name: X-Tigris-Time  
type: apiKey  
in: header  
description: Unix timestamp in milliseconds of the request. Example: 1731703213870
```

- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- postman-cli
- powershell
- python
- r
- ruby
- rust
- shell
- swift

- HTTPCLIENT
- RESTSHARP

```csharp
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://mgmt.storage.dev/v1/providers/:provider_id/account/invoices/:month");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("X-Tigris-Signature", "<X-Tigris-Signature>");
request.Headers.Add("X-Tigris-Nonce", "<X-Tigris-Nonce>");
request.Headers.Add("X-Tigris-Time", "<X-Tigris-Time>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
```

Request Collapse all

Base URL

Edit

https://mgmt.storage.dev

Auth

Signature

Nonce

Timestamp

Parameters

provider_id — path required

month — path required

Send API Request

Response Clear

Click the `Send API Request` button above and see the response here!
