All URIs are relative to http://localhost
| Method | HTTP request | Description |
|---|---|---|
| ReadStats | Get /{ledger}/stats | Get statistics from a ledger |
StatsResponse ReadStats(ctx, ledger).Execute()
Get statistics from a ledger
package main
import (
"context"
"fmt"
"os"
client "github.com/formancehq/numary-sdk-go"
)
func main() {
ledger := "ledger001" // string | name of the ledger
configuration := client.NewConfiguration()
apiClient := client.NewAPIClient(configuration)
resp, r, err := apiClient.StatsApi.ReadStats(context.Background(), ledger).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `StatsApi.ReadStats``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ReadStats`: StatsResponse
fmt.Fprintf(os.Stdout, "Response from `StatsApi.ReadStats`: %v\n", resp)
}| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| ledger | string | name of the ledger |
Other parameters are passed through a pointer to a apiReadStatsRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|
No authorization required
- Content-Type: Not defined
- Accept: application/json; charset=utf-8
[Back to top] [Back to API list] [Back to Model list] [Back to README]