Update Project Tag
curl --request POST \
--url https://api.landing.ai/v1/projects/{project_id}/tags/{tag_id} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'import requests
url = "https://api.landing.ai/v1/projects/{project_id}/tags/{tag_id}"
payload = { "name": "<string>" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({name: '<string>'})
};
fetch('https://api.landing.ai/v1/projects/{project_id}/tags/{tag_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"name": "<string>",
"id": 123,
"orgId": 123,
"isArchived": true,
"createdAt": "<string>",
"updatedAt": "<string>",
"color": "<string>"
}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Tags
Update Project Tag
POST
/
v1
/
projects
/
{project_id}
/
tags
/
{tag_id}
Update Project Tag
curl --request POST \
--url https://api.landing.ai/v1/projects/{project_id}/tags/{tag_id} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'import requests
url = "https://api.landing.ai/v1/projects/{project_id}/tags/{tag_id}"
payload = { "name": "<string>" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({name: '<string>'})
};
fetch('https://api.landing.ai/v1/projects/{project_id}/tags/{tag_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"name": "<string>",
"id": 123,
"orgId": 123,
"isArchived": true,
"createdAt": "<string>",
"updatedAt": "<string>",
"color": "<string>"
}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}⌘I

