Skip to content

Latest commit

 

History

History
75 lines (45 loc) · 1.69 KB

AccountsAPI.md

File metadata and controls

75 lines (45 loc) · 1.69 KB

AccountsAPI

All URIs are relative to https://csp.infoblox.com/api/atcdfp/v1

Method HTTP request Description
CheckConfig Post /config/check Check Config.

CheckConfig

TypesConfigCheckResponse CheckConfig(ctx).Body(body).Execute()

Check Config.

Example

package main

import (
	"context"
	"fmt"
	"os"

	"github.com/infobloxopen/bloxone-go-client/dfp"
)

func main() {
	body := *dfp.NewTypesConfigCheckRequest() // TypesConfigCheckRequest | 

	apiClient := dfp.NewAPIClient()
	resp, r, err := apiClient.AccountsAPI.CheckConfig(context.Background()).Body(body).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `AccountsAPI.CheckConfig``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `CheckConfig`: TypesConfigCheckResponse
	fmt.Fprintf(os.Stdout, "Response from `AccountsAPI.CheckConfig`: %v\n", resp)
}

Path Parameters

Other Parameters

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

Name Type Description Notes
body TypesConfigCheckRequest

Return type

TypesConfigCheckResponse

Authorization

No authorization required

HTTP request headers

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

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