Update a Task Link Introduction  
This example allows you to update a task link in a Project using Aspose.Tasks Cloud API in your applications. You can use our REST API with any language: .NET, Java, PHP, Ruby, Rails, Python, jQuery and many more.
API  
Type  
Description  
Resource Link  
 
 
/tasks/{name}/taskLinks 
PUT 
Update a existing task link 
PutTaskLink  
 
 
cURL Example  
  
       
      Request 
      
curl  - X  PUT  "https://api.aspose.cloud/v3.0/tasks/NewProductDev.mpp/taskLinks/0"  - 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\" }, \"index\": 1, \"predecessorUid\": 0, \"successorUid\": 0, \"linkType\": \"FinishToFinish\", \"lag\": 0, \"lagFormat\": \"Minute\"}" 
 
       
      Response 
      
{ 
  "code" :  0 , 
  "status" :  "string" , 
  "taskLink" :  { 
    "link" :  { 
      "href" :  "string" , 
      "rel" :  "string" , 
      "type" :  "string" , 
      "title" :  "string" 
    }, 
    "index" :  0 , 
    "predecessorUid" :  0 , 
    "successorUid" :  0 , 
    "linkType" :  "FinishToFinish" , 
    "lag" :  0 , 
    "lagFormat" :  "Minute" 
  } 
} 
 
 
SDKs  
The Aspose.Tasks Cloud SDKs can be downloaded from the following page: Available SDKs 
SDK Examples