Create Reference
Creates a new reference.
Request
HTTP Request
Permissions
Path parameters
No parameters required.
Body parameters
Parameter | Type | Description |
---|---|---|
owner | Stringrequired |
The ID of an object that should be used as the root for the created reference. |
target | Stringrequired |
The ID of an object to which a created reference will point. |
client_data | String | Client data of the created reference. |
Request body
Response
Field | Type | Description |
---|---|---|
id | String | ID of the created reference. |
owner | String | ID if the object used as the root for the created reference. |
target | String | ID of the object to which the created reference points. |
client_data | String | Client data of the created reference. |
Example
Request
let login = <...>
let password = <...>
let saymonHostname = <...>
let path = "/node/api/refs";
let auth = "Basic " + btoa(login + ":" + password);
let headers = new Headers();
headers.append("Content-Type", "application/json");
headers.append("Authorization", auth);
let data = JSON.stringify({
"target": "5e60d9db630502472925fe9f",
"owner": "1"
});
let requestOptions = {
method: "POST",
headers: headers,
body: data
};
fetch(saymonHostname + path, requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log("error", error));
const http = require("http");
let login = <...>
let password = <...>
let saymonHostname = <...>
let path = "/node/api/refs";
let auth = "Basic " + Buffer.from(login + ":" + password).toString("base64");
let options = {
"method": "POST",
"hostname": saymonHostname,
"headers": {
"Authorization": auth,
"Content-Type": "application/json"
},
"path": path
};
let req = http.request(options, function (res) {
let chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function (chunk) {
let body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) {
console.error(error);
});
});
let data = JSON.stringify({
"target": "5e60d9db630502472925fe9f",
"owner": "1"
});
req.write(data);
req.end();