POST api/pro/published-libraries

Creates a Published Library.

Request Information

URI Parameters

None.

Body Parameters

The create Published Library request.

CreatePublishedLibraryRequest
NameDescriptionTypeAdditional 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:

Sample not available.

Response Information

Resource Description

Returns the new Published Library id.

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.