All URIs are relative to http://example.com/rest/default
Method | HTTP request | Description |
---|---|---|
PostV1NegotiableQuotePricesUpdated | Post /V1/negotiableQuote/pricesUpdated | negotiableQuote/pricesUpdated |
bool PostV1NegotiableQuotePricesUpdated(ctx).PostV1NegotiableQuotePricesUpdatedRequest(postV1NegotiableQuotePricesUpdatedRequest).Execute()
negotiableQuote/pricesUpdated
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Hevelop/go-client-magento"
)
func main() {
postV1NegotiableQuotePricesUpdatedRequest := *openapiclient.NewPostV1NegotiableQuotePricesUpdatedRequest([]int32{int32(123)}) // PostV1NegotiableQuotePricesUpdatedRequest | (optional)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.NegotiableQuotePricesUpdatedAPI.PostV1NegotiableQuotePricesUpdated(context.Background()).PostV1NegotiableQuotePricesUpdatedRequest(postV1NegotiableQuotePricesUpdatedRequest).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `NegotiableQuotePricesUpdatedAPI.PostV1NegotiableQuotePricesUpdated``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `PostV1NegotiableQuotePricesUpdated`: bool
fmt.Fprintf(os.Stdout, "Response from `NegotiableQuotePricesUpdatedAPI.PostV1NegotiableQuotePricesUpdated`: %v\n", resp)
}
Other parameters are passed through a pointer to a apiPostV1NegotiableQuotePricesUpdatedRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
postV1NegotiableQuotePricesUpdatedRequest | PostV1NegotiableQuotePricesUpdatedRequest |
bool
No authorization required
- Content-Type: application/json, application/xml
- Accept: application/json, application/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]