api_client.api.BaseShipmentStatusUpdateTypeApi
Load the API package
import 'package:api_client/api.dart';
All URIs are relative to https://localhost
Method | HTTP request | Description |
---|---|---|
deleteShipmentStatusUpdateType | POST /deleteShipmentStatusUpdateType | |
getShipmentStatusUpdateType | GET /getShipmentStatusUpdateType | |
getShipmentStatusUpdateTypes | POST /getShipmentStatusUpdateTypes | |
saveShipmentStatusUpdateType | POST /saveShipmentStatusUpdateType |
deleteShipmentStatusUpdateType
deleteShipmentStatusUpdateType(id)
Example
import 'package:api_client/api.dart';
var api_instance = new BaseShipmentStatusUpdateTypeApi();
var id = id_example; // String |
try {
api_instance.deleteShipmentStatusUpdateType(id);
} catch (e) {
print("Exception when calling BaseShipmentStatusUpdateTypeApi->deleteShipmentStatusUpdateType: $e\n");
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | String | [optional] |
Return type
void (empty response body)
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getShipmentStatusUpdateType
ShipmentStatusUpdateTypeServiceModel getShipmentStatusUpdateType(id)
Example
import 'package:api_client/api.dart';
var api_instance = new BaseShipmentStatusUpdateTypeApi();
var id = id_example; // String |
try {
var result = api_instance.getShipmentStatusUpdateType(id);
print(result);
} catch (e) {
print("Exception when calling BaseShipmentStatusUpdateTypeApi->getShipmentStatusUpdateType: $e\n");
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | String | [optional] |
Return type
ShipmentStatusUpdateTypeServiceModel
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getShipmentStatusUpdateTypes
QueryResultShipmentStatusUpdateTypeServiceModel getShipmentStatusUpdateTypes(request)
Example
import 'package:api_client/api.dart';
var api_instance = new BaseShipmentStatusUpdateTypeApi();
var request = new ShipmentStatusUpdateTypeQueryRequest(); // ShipmentStatusUpdateTypeQueryRequest |
try {
var result = api_instance.getShipmentStatusUpdateTypes(request);
print(result);
} catch (e) {
print("Exception when calling BaseShipmentStatusUpdateTypeApi->getShipmentStatusUpdateTypes: $e\n");
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
request | ShipmentStatusUpdateTypeQueryRequest | [optional] |
Return type
QueryResultShipmentStatusUpdateTypeServiceModel
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json-patch+json, application/json, text/json, application/_*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
saveShipmentStatusUpdateType
ShipmentStatusUpdateTypeServiceModel saveShipmentStatusUpdateType(model)
Example
import 'package:api_client/api.dart';
var api_instance = new BaseShipmentStatusUpdateTypeApi();
var model = new ShipmentStatusUpdateTypeServiceModel(); // ShipmentStatusUpdateTypeServiceModel |
try {
var result = api_instance.saveShipmentStatusUpdateType(model);
print(result);
} catch (e) {
print("Exception when calling BaseShipmentStatusUpdateTypeApi->saveShipmentStatusUpdateType: $e\n");
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
model | ShipmentStatusUpdateTypeServiceModel | [optional] |
Return type
ShipmentStatusUpdateTypeServiceModel
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json-patch+json, application/json, text/json, application/_*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]