Skip to content

Latest commit

 

History

History
68 lines (40 loc) · 1.4 KB

ActivitiesApi.md

File metadata and controls

68 lines (40 loc) · 1.4 KB

\ActivitiesApi

All URIs are relative to http://localhost

Method HTTP request Description
ApiV3ActivitiesGet Get /api/v3/activities

ApiV3ActivitiesGet

ApiV3ActivitiesGet(ctx).Execute()

Example

package main

import (
    "context"
    "fmt"
    "os"
    openapiclient "./openapi"
)

func main() {

    configuration := openapiclient.NewConfiguration()
    apiClient := openapiclient.NewAPIClient(configuration)
    resp, r, err := apiClient.ActivitiesApi.ApiV3ActivitiesGet(context.Background()).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `ActivitiesApi.ApiV3ActivitiesGet``: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
    }
}

Path Parameters

This endpoint does not need any parameter.

Other Parameters

Other parameters are passed through a pointer to a apiApiV3ActivitiesGetRequest struct via the builder pattern

Return type

(empty response body)

Authorization

api_key, basic_auth

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

[Back to top] [Back to API list] [Back to Model list] [Back to README]