Import Configuration
Imports configuration in a given category. The configuration binary content should be available as multi-part content (see RFC-2387 for details). Details of working with multi-part resources depend on the used client's HTTP/REST library. For example, in Spring it will look like:
Sample client code:
-------------------
String url = "https://localhost:8281/vco/api/configurations/";
MultiValueMapparts = new LinkedMultiValueMap ();
Resource r = new FileSystemResource("D:/path/to/some.vsoconf");
parts.put("file", Arrays.asList(r));
parts.put("categoryId", "828080808080808080808080808080807F818080013217004819830adebdb10ea");
new RestTemplate().postForLocation(url, parts);
-------------------
Request
URI
POST
https://{api_host}/vco/api/configurations
COPY
Query Parameters
string
categoryId
Required
categoryId
Request Body
importWorkflow of type(s) multipart/form-data
Optional
{
"file": "string"
}
Responses
202
Configuration successfully imported
Operation doesn't return any data structure
400
Request is not valid (validation error)
Operation doesn't return any data structure
401
User is not authorized
Operation doesn't return any data structure
404
Cannot find configuration with the specified name
Operation doesn't return any data structure
Configuration Service Operations
DELETE
Delete Configuration
DELETE
Delete Permission Rule
DELETE
Delete Permissions For Object
GET
Export Configuration
GET
Get Permission Rule
GET
Get Permissions For Object
POST
Import Configuration
POST
Insert Permissions For Object
GET
List All Configurations
PUT
Update Configuration
PUT
Update Permission Rule