All URIs are relative to https://pure.mpg.de/rest
Method | HTTP request | Description |
---|---|---|
create_stage_component_using_post | POST /staging/{componentName} | createStageComponent |
str create_stage_component_using_post(authorization, component_name)
createStageComponent
from __future__ import print_function
import time
import mpg_pure
from mpg_pure.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = mpg_pure.UploadFilesStagingApi()
authorization = 'authorization_example' # str | Authorization
component_name = 'component_name_example' # str | componentName
try:
# createStageComponent
api_response = api_instance.create_stage_component_using_post(authorization, component_name)
pprint(api_response)
except ApiException as e:
print("Exception when calling UploadFilesStagingApi->create_stage_component_using_post: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
authorization | str | Authorization | |
component_name | str | componentName |
str
No authorization required
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]