All URIs are relative to https://api.egoiapp.com
Method | HTTP request | Description |
---|---|---|
ImportOrdersBulk | POST /lists/{list_id}/orders | Orders import bulk request |
AcceptedResponse ImportOrdersBulk (int listId, List importOrdersBulkBulkRequest)
Orders import bulk request
Creates new bulk orders syncronization
DISCLAIMER: stream limits applied. view here
using System.Collections.Generic;
using System.Diagnostics;
using org.egoi.client.api.Api;
using org.egoi.client.api.Client;
using org.egoi.client.api.Model;
namespace Example
{
public class ImportOrdersBulkExample
{
public static void Main()
{
Configuration.Default.BasePath = "https://api.egoiapp.com";
// Configure API key authorization: Apikey
Configuration.Default.AddApiKey("Apikey", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.AddApiKeyPrefix("Apikey", "Bearer");
var apiInstance = new EcommerceActivityApi(Configuration.Default);
var listId = 56; // int | ID of the List
var importOrdersBulkBulkRequest = new List<ImportOrdersBulkBulkRequest>(); // List<ImportOrdersBulkBulkRequest> | Parameters for the Orders
try
{
// Orders import bulk request
AcceptedResponse result = apiInstance.ImportOrdersBulk(listId, importOrdersBulkBulkRequest);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling EcommerceActivityApi.ImportOrdersBulk: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
listId | int | ID of the List | |
importOrdersBulkBulkRequest | List<ImportOrdersBulkBulkRequest> | Parameters for the Orders |
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
202 | OK | - |
400 | Bad Request | - |
401 | Unauthorized | - |
403 | Forbidden | - |
404 | NotFound | - |
422 | Unprocessable Entity | - |
429 | Too Many Requests | - |
500 | Internal Server Error | - |
503 | Service Unavailable | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]