Skip to content

Latest commit

 

History

History
70 lines (43 loc) · 1.67 KB

VppAdminAccountsPreviewApi.md

File metadata and controls

70 lines (43 loc) · 1.67 KB

\VppAdminAccountsPreviewApi

All URIs are relative to /api

Method HTTP request Description
VppAdminAccountsGet Get /vpp/admin-accounts Found all VPP Admin Accounts

VppAdminAccountsGet

[]VppAdminAccount VppAdminAccountsGet(ctx).Execute()

Found all VPP Admin Accounts

Example

package main

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

func main() {

    configuration := openapiclient.NewConfiguration()
    apiClient := openapiclient.NewAPIClient(configuration)
    resp, r, err := apiClient.VppAdminAccountsPreviewApi.VppAdminAccountsGet(context.Background()).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `VppAdminAccountsPreviewApi.VppAdminAccountsGet``: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
    }
    // response from `VppAdminAccountsGet`: []VppAdminAccount
    fmt.Fprintf(os.Stdout, "Response from `VppAdminAccountsPreviewApi.VppAdminAccountsGet`: %v\n", resp)
}

Path Parameters

This endpoint does not need any parameter.

Other Parameters

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

Return type

[]VppAdminAccount

Authorization

Bearer

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

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