REST API

Create_Tag_Web

OVERVIEW

This REST API helps to create a Tag for any of the work items.

Method: Post

Input: 

Authorization: Basic Auth token in the Request Headers 

Post body:

Purpose of Fields given in this API:

Key Value Is Mandatory? Description
Item_ID Integer Yes Enter the item id for which you want to create a tag like 4099
Version Integer Yes Enter the version number of the project like 16
Tag_Name String Yes Enter the tag name which you want to add

Output:

Orcanos Output class:

{
      "IsSuccess": true, ---> API Success  
      "Data": "OK",
      "Message": "",
      "HttpCode": 200
}

IsSuccess: if successful then true else false

Data: JSON object. OK for success message

Message: Error message in case IsSuccess is false

HttpCode: Response HttpCode

Related Articles