Link workflow/session/agent/resource/spec context to a project
curl --request POST \
--url http://localhost:3000/api/v1/projects/link \
--header 'Content-Type: application/json' \
--data '
{
"assetType": "<string>",
"project": "<string>",
"target": "<string>",
"label": "<string>",
"meta": "<string>",
"resourceType": "<string>",
"role": "<string>"
}
'import requests
url = "http://localhost:3000/api/v1/projects/link"
payload = {
"assetType": "<string>",
"project": "<string>",
"target": "<string>",
"label": "<string>",
"meta": "<string>",
"resourceType": "<string>",
"role": "<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({
assetType: '<string>',
project: '<string>',
target: '<string>',
label: '<string>',
meta: '<string>',
resourceType: '<string>',
role: '<string>'
})
};
fetch('http://localhost:3000/api/v1/projects/link', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "3000",
CURLOPT_URL => "http://localhost:3000/api/v1/projects/link",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'assetType' => '<string>',
'project' => '<string>',
'target' => '<string>',
'label' => '<string>',
'meta' => '<string>',
'resourceType' => '<string>',
'role' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://localhost:3000/api/v1/projects/link"
payload := strings.NewReader("{\n \"assetType\": \"<string>\",\n \"project\": \"<string>\",\n \"target\": \"<string>\",\n \"label\": \"<string>\",\n \"meta\": \"<string>\",\n \"resourceType\": \"<string>\",\n \"role\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("http://localhost:3000/api/v1/projects/link")
.header("Content-Type", "application/json")
.body("{\n \"assetType\": \"<string>\",\n \"project\": \"<string>\",\n \"target\": \"<string>\",\n \"label\": \"<string>\",\n \"meta\": \"<string>\",\n \"resourceType\": \"<string>\",\n \"role\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:3000/api/v1/projects/link")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"assetType\": \"<string>\",\n \"project\": \"<string>\",\n \"target\": \"<string>\",\n \"label\": \"<string>\",\n \"meta\": \"<string>\",\n \"resourceType\": \"<string>\",\n \"role\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{}projects
Link workflow/session/agent/resource/spec context to a project
POST
/
api
/
v1
/
projects
/
link
Link workflow/session/agent/resource/spec context to a project
curl --request POST \
--url http://localhost:3000/api/v1/projects/link \
--header 'Content-Type: application/json' \
--data '
{
"assetType": "<string>",
"project": "<string>",
"target": "<string>",
"label": "<string>",
"meta": "<string>",
"resourceType": "<string>",
"role": "<string>"
}
'import requests
url = "http://localhost:3000/api/v1/projects/link"
payload = {
"assetType": "<string>",
"project": "<string>",
"target": "<string>",
"label": "<string>",
"meta": "<string>",
"resourceType": "<string>",
"role": "<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({
assetType: '<string>',
project: '<string>',
target: '<string>',
label: '<string>',
meta: '<string>',
resourceType: '<string>',
role: '<string>'
})
};
fetch('http://localhost:3000/api/v1/projects/link', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "3000",
CURLOPT_URL => "http://localhost:3000/api/v1/projects/link",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'assetType' => '<string>',
'project' => '<string>',
'target' => '<string>',
'label' => '<string>',
'meta' => '<string>',
'resourceType' => '<string>',
'role' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://localhost:3000/api/v1/projects/link"
payload := strings.NewReader("{\n \"assetType\": \"<string>\",\n \"project\": \"<string>\",\n \"target\": \"<string>\",\n \"label\": \"<string>\",\n \"meta\": \"<string>\",\n \"resourceType\": \"<string>\",\n \"role\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("http://localhost:3000/api/v1/projects/link")
.header("Content-Type", "application/json")
.body("{\n \"assetType\": \"<string>\",\n \"project\": \"<string>\",\n \"target\": \"<string>\",\n \"label\": \"<string>\",\n \"meta\": \"<string>\",\n \"resourceType\": \"<string>\",\n \"role\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:3000/api/v1/projects/link")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"assetType\": \"<string>\",\n \"project\": \"<string>\",\n \"target\": \"<string>\",\n \"label\": \"<string>\",\n \"meta\": \"<string>\",\n \"resourceType\": \"<string>\",\n \"role\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{}Body
application/json
workflow|session|agent|resource|spec
Project id or slug
Asset id, session, agent, or locator
Human label for resource links
Free JSON metadata for this link
Required for resource links
Optional role for this link
Response
Success — no @Returns schema declared; payload shape is loose.
The response is of type object.