Create Document Property Introduction
This example explains how to create document property, using Aspose.Tasks Cloud. Aspose.Tasks Cloud is a REST API which can be used with any language: .NET, Java, PHP, Ruby, Rails, Python, jQuery and many more.
API
Type
Description
Resource Link
/tasks/{name}/documentproperties/{propertyName}
POST
Create a property in a MS Project File
PostDocumentProperty
cURL Example
Request
curl - X POST "https://api.aspose.cloud/v3.0/tasks/Home_move_plan.mpp/documentproperties/Title" - H "accept: application/json" - H "Content-Type: application/json" - H "x-aspose-client: Containerize.Swagger" - d "{ \"link\": { \"href\": \"string\", \"rel\": \"string\", \"type\": \"string\", \"title\": \"string\" }, \"name\": \"Title\", \"value\": \"New title value\"}"
Response
{
"code" : 0 ,
"status" : "string" ,
"property" : {
"link" : {
"href" : "string" ,
"rel" : "string" ,
"type" : "string" ,
"title" : "string"
},
"name" : "string" ,
"value" : "string"
}
}
SDKs
The Aspose.Tasks Cloud SDKs can be downloaded from the following page: Available SDKs
SDK Examples