Skip to content

Latest commit

 

History

History
154 lines (100 loc) · 6 KB

InventorySourcesAPI.md

File metadata and controls

154 lines (100 loc) · 6 KB

\InventorySourcesAPI

All URIs are relative to http://example.com/rest/default

Method HTTP request Description
GetV1InventorySources Get /V1/inventory/sources inventory/sources
PostV1InventorySources Post /V1/inventory/sources inventory/sources

GetV1InventorySources

InventoryApiDataSourceSearchResultsInterface GetV1InventorySources(ctx).SearchCriteriaFilterGroups0Filters0Field(searchCriteriaFilterGroups0Filters0Field).SearchCriteriaFilterGroups0Filters0Value(searchCriteriaFilterGroups0Filters0Value).SearchCriteriaFilterGroups0Filters0ConditionType(searchCriteriaFilterGroups0Filters0ConditionType).SearchCriteriaSortOrders0Field(searchCriteriaSortOrders0Field).SearchCriteriaSortOrders0Direction(searchCriteriaSortOrders0Direction).SearchCriteriaPageSize(searchCriteriaPageSize).SearchCriteriaCurrentPage(searchCriteriaCurrentPage).Execute()

inventory/sources

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/Hevelop/go-client-magento"
)

func main() {
	searchCriteriaFilterGroups0Filters0Field := "searchCriteriaFilterGroups0Filters0Field_example" // string | Field (optional)
	searchCriteriaFilterGroups0Filters0Value := "searchCriteriaFilterGroups0Filters0Value_example" // string | Value (optional)
	searchCriteriaFilterGroups0Filters0ConditionType := "searchCriteriaFilterGroups0Filters0ConditionType_example" // string | Condition type (optional)
	searchCriteriaSortOrders0Field := "searchCriteriaSortOrders0Field_example" // string | Sorting field. (optional)
	searchCriteriaSortOrders0Direction := "searchCriteriaSortOrders0Direction_example" // string | Sorting direction. (optional)
	searchCriteriaPageSize := int32(56) // int32 | Page size. (optional)
	searchCriteriaCurrentPage := int32(56) // int32 | Current page. (optional)

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.InventorySourcesAPI.GetV1InventorySources(context.Background()).SearchCriteriaFilterGroups0Filters0Field(searchCriteriaFilterGroups0Filters0Field).SearchCriteriaFilterGroups0Filters0Value(searchCriteriaFilterGroups0Filters0Value).SearchCriteriaFilterGroups0Filters0ConditionType(searchCriteriaFilterGroups0Filters0ConditionType).SearchCriteriaSortOrders0Field(searchCriteriaSortOrders0Field).SearchCriteriaSortOrders0Direction(searchCriteriaSortOrders0Direction).SearchCriteriaPageSize(searchCriteriaPageSize).SearchCriteriaCurrentPage(searchCriteriaCurrentPage).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `InventorySourcesAPI.GetV1InventorySources``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetV1InventorySources`: InventoryApiDataSourceSearchResultsInterface
	fmt.Fprintf(os.Stdout, "Response from `InventorySourcesAPI.GetV1InventorySources`: %v\n", resp)
}

Path Parameters

Other Parameters

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

Name Type Description Notes
searchCriteriaFilterGroups0Filters0Field string Field
searchCriteriaFilterGroups0Filters0Value string Value
searchCriteriaFilterGroups0Filters0ConditionType string Condition type
searchCriteriaSortOrders0Field string Sorting field.
searchCriteriaSortOrders0Direction string Sorting direction.
searchCriteriaPageSize int32 Page size.
searchCriteriaCurrentPage int32 Current page.

Return type

InventoryApiDataSourceSearchResultsInterface

Authorization

No authorization required

HTTP request headers

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

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

PostV1InventorySources

ErrorResponse PostV1InventorySources(ctx).PostV1InventorySourcesRequest(postV1InventorySourcesRequest).Execute()

inventory/sources

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/Hevelop/go-client-magento"
)

func main() {
	postV1InventorySourcesRequest := *openapiclient.NewPostV1InventorySourcesRequest(*openapiclient.NewInventoryApiDataSourceInterface()) // PostV1InventorySourcesRequest |  (optional)

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

Path Parameters

Other Parameters

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

Name Type Description Notes
postV1InventorySourcesRequest PostV1InventorySourcesRequest

Return type

ErrorResponse

Authorization

No authorization required

HTTP request headers

  • 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]