All URIs are relative to https://api.api2cart.com/v1.1
Method | HTTP request | Description |
---|---|---|
bridgeDelete | POST /bridge.delete.json | bridge.delete |
bridgeDownload | GET /bridge.download.file | bridge.download |
bridgeUpdate | POST /bridge.update.json | bridge.update |
AttributeValueDelete200Response bridgeDelete()
Delete bridge from the store.
import { createConfiguration, BridgeApi } from '';
const configuration = createConfiguration();
const apiInstance = new BridgeApi(configuration);
const request = {};
const data = await apiInstance.bridgeDelete(request);
console.log('API called successfully. Returned data:', data);
This endpoint does not need any parameter.
AttributeValueDelete200Response
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | successful operation | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
HttpFile bridgeDownload()
Download bridge for store.
Please note that the method would not work if you call it from Swagger UI.
import { createConfiguration, BridgeApi } from '';
import type { BridgeApiBridgeDownloadRequest } from '';
const configuration = createConfiguration();
const apiInstance = new BridgeApi(configuration);
const request: BridgeApiBridgeDownloadRequest = {
// Identifies if there is a necessity to download whitelabel bridge. (optional)
whitelabel: true,
};
const data = await apiInstance.bridgeDownload(request);
console.log('API called successfully. Returned data:', data);
Name | Type | Description | Notes |
---|---|---|---|
whitelabel | [boolean] | Identifies if there is a necessity to download whitelabel bridge. | (optional) defaults to false |
HttpFile
- Content-Type: Not defined
- Accept: application/zip
Status code | Description | Response headers |
---|---|---|
200 | successful operation | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
AttributeUpdate200Response bridgeUpdate()
Update bridge in the store.
import { createConfiguration, BridgeApi } from '';
const configuration = createConfiguration();
const apiInstance = new BridgeApi(configuration);
const request = {};
const data = await apiInstance.bridgeUpdate(request);
console.log('API called successfully. Returned data:', data);
This endpoint does not need any parameter.
AttributeUpdate200Response
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | successful operation | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]