All URIs are relative to http://localhost
| Method | HTTP request | Description |
|---|---|---|
| ApiV3ConnectorRunLogsConnectorsIdentGet | Get /api/v3/connector_run_logs/connectors/{ident} | |
| ApiV3ConnectorRunLogsIdentGet | Get /api/v3/connector_run_logs/{ident} |
ApiV3ConnectorRunLogsConnectorsIdentGet(ctx, ident).Execute()
package main
import (
"context"
"fmt"
"os"
openapiclient "./openapi"
)
func main() {
ident := "ident_example" // string | ID of system object (assets, locations, ...)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ConnectorApi.ApiV3ConnectorRunLogsConnectorsIdentGet(context.Background(), ident).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ConnectorApi.ApiV3ConnectorRunLogsConnectorsIdentGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| ident | string | ID of system object (assets, locations, ...) |
Other parameters are passed through a pointer to a apiApiV3ConnectorRunLogsConnectorsIdentGetRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|
(empty response body)
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ApiV3ConnectorRunLogsIdentGet(ctx, ident).Limit(limit).Skip(skip).Sortby(sortby).Filter(filter).Execute()
package main
import (
"context"
"fmt"
"os"
openapiclient "./openapi"
)
func main() {
ident := "ident_example" // string | ID of system object (assets, locations, ...)
limit := "limit_example" // string | Limit records (optional)
skip := "skip_example" // string | Skip records (optional)
sortby := "sortby_example" // string | Order for results (optional)
filter := "filter_example" // string | Regular API v3 filter expression (optional)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ConnectorApi.ApiV3ConnectorRunLogsIdentGet(context.Background(), ident).Limit(limit).Skip(skip).Sortby(sortby).Filter(filter).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ConnectorApi.ApiV3ConnectorRunLogsIdentGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| ident | string | ID of system object (assets, locations, ...) |
Other parameters are passed through a pointer to a apiApiV3ConnectorRunLogsIdentGetRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|
limit | string | Limit records | skip | string | Skip records | sortby | string | Order for results | filter | string | Regular API v3 filter expression |
(empty response body)
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]