POST api/pro/published-libraries
Creates a Published Library.
Request Information
URI Parameters
None.
Body Parameters
The create Published Library request.
CreatePublishedLibraryRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
Required |
|
| Name | string |
Required |
|
| BlobMetadata | BlobMetadataDto |
Required |
|
| Archived | boolean |
Required |
Request Formats
application/json, text/json
Sample:
{
"Id": "sample string 1",
"Name": "sample string 2",
"BlobMetadata": {
"FileVersion": "sample string 1",
"Properties": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
}
},
"Archived": true
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Returns the new Published Library id.
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.