Skip to content

Latest commit

 

History

History
800 lines (586 loc) · 28 KB

LegacyLowstockContactApi.md

File metadata and controls

800 lines (586 loc) · 28 KB

LegacyLowstockContactApi

All URIs are relative to https://kingsrook.localhost-testsubdomain1.infopluswms.com:8443/infoplus-wms/api

Method HTTP request Description
addLegacyLowstockContact POST /beta/legacyLowstockContact Create a legacyLowstockContact
addLegacyLowstockContactAudit PUT /beta/legacyLowstockContact/{legacyLowstockContactId}/audit/{legacyLowstockContactAudit} Add new audit for a legacyLowstockContact
addLegacyLowstockContactFile POST /beta/legacyLowstockContact/{legacyLowstockContactId}/file/{fileName} Attach a file to a legacyLowstockContact
addLegacyLowstockContactFileByURL POST /beta/legacyLowstockContact/{legacyLowstockContactId}/file Attach a file to a legacyLowstockContact by URL.
addLegacyLowstockContactTag PUT /beta/legacyLowstockContact/{legacyLowstockContactId}/tag/{legacyLowstockContactTag} Add new tags for a legacyLowstockContact.
deleteLegacyLowstockContact DELETE /beta/legacyLowstockContact/{legacyLowstockContactId} Delete a legacyLowstockContact
deleteLegacyLowstockContactFile DELETE /beta/legacyLowstockContact/{legacyLowstockContactId}/file/{fileId} Delete a file for a legacyLowstockContact.
deleteLegacyLowstockContactTag DELETE /beta/legacyLowstockContact/{legacyLowstockContactId}/tag/{legacyLowstockContactTag} Delete a tag for a legacyLowstockContact.
getDuplicateLegacyLowstockContactById GET /beta/legacyLowstockContact/duplicate/{legacyLowstockContactId} Get a duplicated a legacyLowstockContact by id
getLegacyLowstockContactByFilter GET /beta/legacyLowstockContact/search Search legacyLowstockContacts by filter
getLegacyLowstockContactById GET /beta/legacyLowstockContact/{legacyLowstockContactId} Get a legacyLowstockContact by id
getLegacyLowstockContactFiles GET /beta/legacyLowstockContact/{legacyLowstockContactId}/file Get the files for a legacyLowstockContact.
getLegacyLowstockContactTags GET /beta/legacyLowstockContact/{legacyLowstockContactId}/tag Get the tags for a legacyLowstockContact.
updateLegacyLowstockContact PUT /beta/legacyLowstockContact Update a legacyLowstockContact

addLegacyLowstockContact

LegacyLowstockContact addLegacyLowstockContact(body)

Create a legacyLowstockContact

Inserts a new legacyLowstockContact using the specified data.

Example

// Import classes:
//import com.infopluscommerce.ApiClient;
//import com.infopluscommerce.ApiException;
//import com.infopluscommerce.Configuration;
//import com.infopluscommerce.auth.*;
//import com.infopluscommerce.api.LegacyLowstockContactApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: api_key
ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
api_key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.setApiKeyPrefix("Token");

LegacyLowstockContactApi apiInstance = new LegacyLowstockContactApi();
LegacyLowstockContact body = new LegacyLowstockContact(); // LegacyLowstockContact | LegacyLowstockContact to be inserted.
try {
    LegacyLowstockContact result = apiInstance.addLegacyLowstockContact(body);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling LegacyLowstockContactApi#addLegacyLowstockContact");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
body LegacyLowstockContact LegacyLowstockContact to be inserted.

Return type

LegacyLowstockContact

Authorization

api_key

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

addLegacyLowstockContactAudit

addLegacyLowstockContactAudit(legacyLowstockContactId, legacyLowstockContactAudit)

Add new audit for a legacyLowstockContact

Adds an audit to an existing legacyLowstockContact.

Example

// Import classes:
//import com.infopluscommerce.ApiClient;
//import com.infopluscommerce.ApiException;
//import com.infopluscommerce.Configuration;
//import com.infopluscommerce.auth.*;
//import com.infopluscommerce.api.LegacyLowstockContactApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: api_key
ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
api_key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.setApiKeyPrefix("Token");

LegacyLowstockContactApi apiInstance = new LegacyLowstockContactApi();
Integer legacyLowstockContactId = 56; // Integer | Id of the legacyLowstockContact to add an audit to
String legacyLowstockContactAudit = "legacyLowstockContactAudit_example"; // String | The audit to add
try {
    apiInstance.addLegacyLowstockContactAudit(legacyLowstockContactId, legacyLowstockContactAudit);
} catch (ApiException e) {
    System.err.println("Exception when calling LegacyLowstockContactApi#addLegacyLowstockContactAudit");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
legacyLowstockContactId Integer Id of the legacyLowstockContact to add an audit to
legacyLowstockContactAudit String The audit to add

Return type

null (empty response body)

Authorization

api_key

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

addLegacyLowstockContactFile

addLegacyLowstockContactFile(legacyLowstockContactId, fileName)

Attach a file to a legacyLowstockContact

Adds a file to an existing legacyLowstockContact.

Example

// Import classes:
//import com.infopluscommerce.ApiClient;
//import com.infopluscommerce.ApiException;
//import com.infopluscommerce.Configuration;
//import com.infopluscommerce.auth.*;
//import com.infopluscommerce.api.LegacyLowstockContactApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: api_key
ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
api_key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.setApiKeyPrefix("Token");

LegacyLowstockContactApi apiInstance = new LegacyLowstockContactApi();
Integer legacyLowstockContactId = 56; // Integer | Id of the legacyLowstockContact to add a file to
String fileName = "fileName_example"; // String | Name of file
try {
    apiInstance.addLegacyLowstockContactFile(legacyLowstockContactId, fileName);
} catch (ApiException e) {
    System.err.println("Exception when calling LegacyLowstockContactApi#addLegacyLowstockContactFile");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
legacyLowstockContactId Integer Id of the legacyLowstockContact to add a file to
fileName String Name of file

Return type

null (empty response body)

Authorization

api_key

HTTP request headers

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

addLegacyLowstockContactFileByURL

addLegacyLowstockContactFileByURL(body, legacyLowstockContactId)

Attach a file to a legacyLowstockContact by URL.

Adds a file to an existing legacyLowstockContact by URL.

Example

// Import classes:
//import com.infopluscommerce.ApiClient;
//import com.infopluscommerce.ApiException;
//import com.infopluscommerce.Configuration;
//import com.infopluscommerce.auth.*;
//import com.infopluscommerce.api.LegacyLowstockContactApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: api_key
ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
api_key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.setApiKeyPrefix("Token");

LegacyLowstockContactApi apiInstance = new LegacyLowstockContactApi();
RecordFile body = new RecordFile(); // RecordFile | The url and optionly fileName to be used.
Integer legacyLowstockContactId = 56; // Integer | Id of the legacyLowstockContact to add an file to
try {
    apiInstance.addLegacyLowstockContactFileByURL(body, legacyLowstockContactId);
} catch (ApiException e) {
    System.err.println("Exception when calling LegacyLowstockContactApi#addLegacyLowstockContactFileByURL");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
body RecordFile The url and optionly fileName to be used.
legacyLowstockContactId Integer Id of the legacyLowstockContact to add an file to

Return type

null (empty response body)

Authorization

api_key

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

addLegacyLowstockContactTag

addLegacyLowstockContactTag(legacyLowstockContactId, legacyLowstockContactTag)

Add new tags for a legacyLowstockContact.

Adds a tag to an existing legacyLowstockContact.

Example

// Import classes:
//import com.infopluscommerce.ApiClient;
//import com.infopluscommerce.ApiException;
//import com.infopluscommerce.Configuration;
//import com.infopluscommerce.auth.*;
//import com.infopluscommerce.api.LegacyLowstockContactApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: api_key
ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
api_key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.setApiKeyPrefix("Token");

LegacyLowstockContactApi apiInstance = new LegacyLowstockContactApi();
Integer legacyLowstockContactId = 56; // Integer | Id of the legacyLowstockContact to add a tag to
String legacyLowstockContactTag = "legacyLowstockContactTag_example"; // String | The tag to add
try {
    apiInstance.addLegacyLowstockContactTag(legacyLowstockContactId, legacyLowstockContactTag);
} catch (ApiException e) {
    System.err.println("Exception when calling LegacyLowstockContactApi#addLegacyLowstockContactTag");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
legacyLowstockContactId Integer Id of the legacyLowstockContact to add a tag to
legacyLowstockContactTag String The tag to add

Return type

null (empty response body)

Authorization

api_key

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

deleteLegacyLowstockContact

deleteLegacyLowstockContact(legacyLowstockContactId)

Delete a legacyLowstockContact

Deletes the legacyLowstockContact identified by the specified id.

Example

// Import classes:
//import com.infopluscommerce.ApiClient;
//import com.infopluscommerce.ApiException;
//import com.infopluscommerce.Configuration;
//import com.infopluscommerce.auth.*;
//import com.infopluscommerce.api.LegacyLowstockContactApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: api_key
ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
api_key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.setApiKeyPrefix("Token");

LegacyLowstockContactApi apiInstance = new LegacyLowstockContactApi();
Integer legacyLowstockContactId = 56; // Integer | Id of the legacyLowstockContact to be deleted.
try {
    apiInstance.deleteLegacyLowstockContact(legacyLowstockContactId);
} catch (ApiException e) {
    System.err.println("Exception when calling LegacyLowstockContactApi#deleteLegacyLowstockContact");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
legacyLowstockContactId Integer Id of the legacyLowstockContact to be deleted.

Return type

null (empty response body)

Authorization

api_key

HTTP request headers

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

deleteLegacyLowstockContactFile

deleteLegacyLowstockContactFile(legacyLowstockContactId, fileId)

Delete a file for a legacyLowstockContact.

Deletes an existing legacyLowstockContact file using the specified data.

Example

// Import classes:
//import com.infopluscommerce.ApiClient;
//import com.infopluscommerce.ApiException;
//import com.infopluscommerce.Configuration;
//import com.infopluscommerce.auth.*;
//import com.infopluscommerce.api.LegacyLowstockContactApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: api_key
ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
api_key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.setApiKeyPrefix("Token");

LegacyLowstockContactApi apiInstance = new LegacyLowstockContactApi();
Integer legacyLowstockContactId = 56; // Integer | Id of the legacyLowstockContact to remove file from
Integer fileId = 56; // Integer | Id of the file to delete
try {
    apiInstance.deleteLegacyLowstockContactFile(legacyLowstockContactId, fileId);
} catch (ApiException e) {
    System.err.println("Exception when calling LegacyLowstockContactApi#deleteLegacyLowstockContactFile");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
legacyLowstockContactId Integer Id of the legacyLowstockContact to remove file from
fileId Integer Id of the file to delete

Return type

null (empty response body)

Authorization

api_key

HTTP request headers

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

deleteLegacyLowstockContactTag

deleteLegacyLowstockContactTag(legacyLowstockContactId, legacyLowstockContactTag)

Delete a tag for a legacyLowstockContact.

Deletes an existing legacyLowstockContact tag using the specified data.

Example

// Import classes:
//import com.infopluscommerce.ApiClient;
//import com.infopluscommerce.ApiException;
//import com.infopluscommerce.Configuration;
//import com.infopluscommerce.auth.*;
//import com.infopluscommerce.api.LegacyLowstockContactApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: api_key
ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
api_key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.setApiKeyPrefix("Token");

LegacyLowstockContactApi apiInstance = new LegacyLowstockContactApi();
Integer legacyLowstockContactId = 56; // Integer | Id of the legacyLowstockContact to remove tag from
String legacyLowstockContactTag = "legacyLowstockContactTag_example"; // String | The tag to delete
try {
    apiInstance.deleteLegacyLowstockContactTag(legacyLowstockContactId, legacyLowstockContactTag);
} catch (ApiException e) {
    System.err.println("Exception when calling LegacyLowstockContactApi#deleteLegacyLowstockContactTag");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
legacyLowstockContactId Integer Id of the legacyLowstockContact to remove tag from
legacyLowstockContactTag String The tag to delete

Return type

null (empty response body)

Authorization

api_key

HTTP request headers

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

getDuplicateLegacyLowstockContactById

LegacyLowstockContact getDuplicateLegacyLowstockContactById(legacyLowstockContactId)

Get a duplicated a legacyLowstockContact by id

Returns a duplicated legacyLowstockContact identified by the specified id.

Example

// Import classes:
//import com.infopluscommerce.ApiClient;
//import com.infopluscommerce.ApiException;
//import com.infopluscommerce.Configuration;
//import com.infopluscommerce.auth.*;
//import com.infopluscommerce.api.LegacyLowstockContactApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: api_key
ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
api_key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.setApiKeyPrefix("Token");

LegacyLowstockContactApi apiInstance = new LegacyLowstockContactApi();
Integer legacyLowstockContactId = 56; // Integer | Id of the legacyLowstockContact to be duplicated.
try {
    LegacyLowstockContact result = apiInstance.getDuplicateLegacyLowstockContactById(legacyLowstockContactId);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling LegacyLowstockContactApi#getDuplicateLegacyLowstockContactById");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
legacyLowstockContactId Integer Id of the legacyLowstockContact to be duplicated.

Return type

LegacyLowstockContact

Authorization

api_key

HTTP request headers

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

getLegacyLowstockContactByFilter

List<LegacyLowstockContact> getLegacyLowstockContactByFilter(filter, page, limit, sort)

Search legacyLowstockContacts by filter

Returns the list of legacyLowstockContacts that match the given filter.

Example

// Import classes:
//import com.infopluscommerce.ApiClient;
//import com.infopluscommerce.ApiException;
//import com.infopluscommerce.Configuration;
//import com.infopluscommerce.auth.*;
//import com.infopluscommerce.api.LegacyLowstockContactApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: api_key
ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
api_key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.setApiKeyPrefix("Token");

LegacyLowstockContactApi apiInstance = new LegacyLowstockContactApi();
String filter = "filter_example"; // String | Query string, used to filter results.
Integer page = 56; // Integer | Result page number.  Defaults to 1.
Integer limit = 56; // Integer | Maximum results per page.  Defaults to 20.  Max allowed value is 250.
String sort = "sort_example"; // String | Sort results by specified field.
try {
    List<LegacyLowstockContact> result = apiInstance.getLegacyLowstockContactByFilter(filter, page, limit, sort);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling LegacyLowstockContactApi#getLegacyLowstockContactByFilter");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
filter String Query string, used to filter results. [optional]
page Integer Result page number. Defaults to 1. [optional]
limit Integer Maximum results per page. Defaults to 20. Max allowed value is 250. [optional]
sort String Sort results by specified field. [optional]

Return type

List<LegacyLowstockContact>

Authorization

api_key

HTTP request headers

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

getLegacyLowstockContactById

LegacyLowstockContact getLegacyLowstockContactById(legacyLowstockContactId)

Get a legacyLowstockContact by id

Returns the legacyLowstockContact identified by the specified id.

Example

// Import classes:
//import com.infopluscommerce.ApiClient;
//import com.infopluscommerce.ApiException;
//import com.infopluscommerce.Configuration;
//import com.infopluscommerce.auth.*;
//import com.infopluscommerce.api.LegacyLowstockContactApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: api_key
ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
api_key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.setApiKeyPrefix("Token");

LegacyLowstockContactApi apiInstance = new LegacyLowstockContactApi();
Integer legacyLowstockContactId = 56; // Integer | Id of the legacyLowstockContact to be returned.
try {
    LegacyLowstockContact result = apiInstance.getLegacyLowstockContactById(legacyLowstockContactId);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling LegacyLowstockContactApi#getLegacyLowstockContactById");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
legacyLowstockContactId Integer Id of the legacyLowstockContact to be returned.

Return type

LegacyLowstockContact

Authorization

api_key

HTTP request headers

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

getLegacyLowstockContactFiles

getLegacyLowstockContactFiles(legacyLowstockContactId)

Get the files for a legacyLowstockContact.

Get all existing legacyLowstockContact files.

Example

// Import classes:
//import com.infopluscommerce.ApiClient;
//import com.infopluscommerce.ApiException;
//import com.infopluscommerce.Configuration;
//import com.infopluscommerce.auth.*;
//import com.infopluscommerce.api.LegacyLowstockContactApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: api_key
ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
api_key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.setApiKeyPrefix("Token");

LegacyLowstockContactApi apiInstance = new LegacyLowstockContactApi();
Integer legacyLowstockContactId = 56; // Integer | Id of the legacyLowstockContact to get files for
try {
    apiInstance.getLegacyLowstockContactFiles(legacyLowstockContactId);
} catch (ApiException e) {
    System.err.println("Exception when calling LegacyLowstockContactApi#getLegacyLowstockContactFiles");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
legacyLowstockContactId Integer Id of the legacyLowstockContact to get files for

Return type

null (empty response body)

Authorization

api_key

HTTP request headers

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

getLegacyLowstockContactTags

getLegacyLowstockContactTags(legacyLowstockContactId)

Get the tags for a legacyLowstockContact.

Get all existing legacyLowstockContact tags.

Example

// Import classes:
//import com.infopluscommerce.ApiClient;
//import com.infopluscommerce.ApiException;
//import com.infopluscommerce.Configuration;
//import com.infopluscommerce.auth.*;
//import com.infopluscommerce.api.LegacyLowstockContactApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: api_key
ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
api_key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.setApiKeyPrefix("Token");

LegacyLowstockContactApi apiInstance = new LegacyLowstockContactApi();
Integer legacyLowstockContactId = 56; // Integer | Id of the legacyLowstockContact to get tags for
try {
    apiInstance.getLegacyLowstockContactTags(legacyLowstockContactId);
} catch (ApiException e) {
    System.err.println("Exception when calling LegacyLowstockContactApi#getLegacyLowstockContactTags");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
legacyLowstockContactId Integer Id of the legacyLowstockContact to get tags for

Return type

null (empty response body)

Authorization

api_key

HTTP request headers

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

updateLegacyLowstockContact

updateLegacyLowstockContact(body)

Update a legacyLowstockContact

Updates an existing legacyLowstockContact using the specified data.

Example

// Import classes:
//import com.infopluscommerce.ApiClient;
//import com.infopluscommerce.ApiException;
//import com.infopluscommerce.Configuration;
//import com.infopluscommerce.auth.*;
//import com.infopluscommerce.api.LegacyLowstockContactApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: api_key
ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
api_key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.setApiKeyPrefix("Token");

LegacyLowstockContactApi apiInstance = new LegacyLowstockContactApi();
LegacyLowstockContact body = new LegacyLowstockContact(); // LegacyLowstockContact | LegacyLowstockContact to be updated.
try {
    apiInstance.updateLegacyLowstockContact(body);
} catch (ApiException e) {
    System.err.println("Exception when calling LegacyLowstockContactApi#updateLegacyLowstockContact");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
body LegacyLowstockContact LegacyLowstockContact to be updated.

Return type

null (empty response body)

Authorization

api_key

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json