All URIs are relative to http://example.com/rest/default
| Method | HTTP request | Description |
|---|---|---|
| GetV1InventorySourceitems | Get /V1/inventory/source-items | inventory/source-items |
| PostV1InventorySourceitems | Post /V1/inventory/source-items | inventory/source-items |
InventoryApiDataSourceItemSearchResultsInterface GetV1InventorySourceitems(ctx).SearchCriteriaFilterGroups0Filters0Field(searchCriteriaFilterGroups0Filters0Field).SearchCriteriaFilterGroups0Filters0Value(searchCriteriaFilterGroups0Filters0Value).SearchCriteriaFilterGroups0Filters0ConditionType(searchCriteriaFilterGroups0Filters0ConditionType).SearchCriteriaSortOrders0Field(searchCriteriaSortOrders0Field).SearchCriteriaSortOrders0Direction(searchCriteriaSortOrders0Direction).SearchCriteriaPageSize(searchCriteriaPageSize).SearchCriteriaCurrentPage(searchCriteriaCurrentPage).Execute()
inventory/source-items
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.InventorySourceItemsAPI.GetV1InventorySourceitems(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 `InventorySourceItemsAPI.GetV1InventorySourceitems``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetV1InventorySourceitems`: InventoryApiDataSourceItemSearchResultsInterface
fmt.Fprintf(os.Stdout, "Response from `InventorySourceItemsAPI.GetV1InventorySourceitems`: %v\n", resp)
}Other parameters are passed through a pointer to a apiGetV1InventorySourceitemsRequest 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. |
InventoryApiDataSourceItemSearchResultsInterface
No authorization required
- Content-Type: Not defined
- Accept: application/json, application/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ErrorResponse PostV1InventorySourceitems(ctx).PostV1InventoryLowquantitynotificationsdeleteRequest(postV1InventoryLowquantitynotificationsdeleteRequest).Execute()
inventory/source-items
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Hevelop/go-client-magento"
)
func main() {
postV1InventoryLowquantitynotificationsdeleteRequest := *openapiclient.NewPostV1InventoryLowquantitynotificationsdeleteRequest([]openapiclient.InventoryApiDataSourceItemInterface{*openapiclient.NewInventoryApiDataSourceItemInterface()}) // PostV1InventoryLowquantitynotificationsdeleteRequest | (optional)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.InventorySourceItemsAPI.PostV1InventorySourceitems(context.Background()).PostV1InventoryLowquantitynotificationsdeleteRequest(postV1InventoryLowquantitynotificationsdeleteRequest).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `InventorySourceItemsAPI.PostV1InventorySourceitems``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `PostV1InventorySourceitems`: ErrorResponse
fmt.Fprintf(os.Stdout, "Response from `InventorySourceItemsAPI.PostV1InventorySourceitems`: %v\n", resp)
}Other parameters are passed through a pointer to a apiPostV1InventorySourceitemsRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|---|---|---|
| postV1InventoryLowquantitynotificationsdeleteRequest | PostV1InventoryLowquantitynotificationsdeleteRequest |
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]