Skip to content

Latest commit

 

History

History
83 lines (54 loc) · 2.71 KB

ObjectClonehistoryAPI.md

File metadata and controls

83 lines (54 loc) · 2.71 KB

eZmaxAPI\ObjectClonehistoryAPI

All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest

Method HTTP request Description
ClonehistoryGetListV1 Get /1/object/clonehistory/getList Retrieve Clonehistory list

ClonehistoryGetListV1

ClonehistoryGetListV1Response ClonehistoryGetListV1(ctx).EOrderBy(eOrderBy).IRowMax(iRowMax).IRowOffset(iRowOffset).AcceptLanguage(acceptLanguage).SFilter(sFilter).Execute()

Retrieve Clonehistory list

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/ezmaxinc/ezmax-sdk-go"
)

func main() {
	eOrderBy := "eOrderBy_example" // string | Specify how you want the results to be sorted (optional)
	iRowMax := int32(56) // int32 |  (optional)
	iRowOffset := int32(56) // int32 |  (optional) (default to 0)
	acceptLanguage := openapiclient.Header-Accept-Language("*") // HeaderAcceptLanguage |  (optional)
	sFilter := "sFilter_example" // string |  (optional)

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.ObjectClonehistoryAPI.ClonehistoryGetListV1(context.Background()).EOrderBy(eOrderBy).IRowMax(iRowMax).IRowOffset(iRowOffset).AcceptLanguage(acceptLanguage).SFilter(sFilter).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `ObjectClonehistoryAPI.ClonehistoryGetListV1``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `ClonehistoryGetListV1`: ClonehistoryGetListV1Response
	fmt.Fprintf(os.Stdout, "Response from `ObjectClonehistoryAPI.ClonehistoryGetListV1`: %v\n", resp)
}

Path Parameters

Other Parameters

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

Name Type Description Notes
eOrderBy string Specify how you want the results to be sorted
iRowMax int32
iRowOffset int32 [default to 0]
acceptLanguage HeaderAcceptLanguage
sFilter string

Return type

ClonehistoryGetListV1Response

Authorization

Authorization

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

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