Exports
Create
Create an export for an artifact version as part of a callback from special clients. This currently only supports the Filetask client, as a callback from the creation of dataset-export types, in order to track the lineage. It is the requesting client’s responsibility to ensure the correctness of the export lineage.
POST
/
artifacts
/
v1
/
exports-callback
Create
curl --request POST \
--url https://mycluster.domino.tech/flows/api/artifacts/v1/exports-callback \
--header 'Content-Type: application/json' \
--data '
{
"errorMsg": "<string>",
"id": "<string>",
"key": "<string>",
"status": "<string>",
"taskType": "<string>",
"update": "<unknown>"
}
'import requests
url = "https://mycluster.domino.tech/flows/api/artifacts/v1/exports-callback"
payload = {
"errorMsg": "<string>",
"id": "<string>",
"key": "<string>",
"status": "<string>",
"taskType": "<string>",
"update": "<unknown>"
}
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({
errorMsg: '<string>',
id: '<string>',
key: '<string>',
status: '<string>',
taskType: '<string>',
update: '<unknown>'
})
};
fetch('https://mycluster.domino.tech/flows/api/artifacts/v1/exports-callback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://mycluster.domino.tech/flows/api/artifacts/v1/exports-callback",
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([
'errorMsg' => '<string>',
'id' => '<string>',
'key' => '<string>',
'status' => '<string>',
'taskType' => '<string>',
'update' => '<unknown>'
]),
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 := "https://mycluster.domino.tech/flows/api/artifacts/v1/exports-callback"
payload := strings.NewReader("{\n \"errorMsg\": \"<string>\",\n \"id\": \"<string>\",\n \"key\": \"<string>\",\n \"status\": \"<string>\",\n \"taskType\": \"<string>\",\n \"update\": \"<unknown>\"\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("https://mycluster.domino.tech/flows/api/artifacts/v1/exports-callback")
.header("Content-Type", "application/json")
.body("{\n \"errorMsg\": \"<string>\",\n \"id\": \"<string>\",\n \"key\": \"<string>\",\n \"status\": \"<string>\",\n \"taskType\": \"<string>\",\n \"update\": \"<unknown>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://mycluster.domino.tech/flows/api/artifacts/v1/exports-callback")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"errorMsg\": \"<string>\",\n \"id\": \"<string>\",\n \"key\": \"<string>\",\n \"status\": \"<string>\",\n \"taskType\": \"<string>\",\n \"update\": \"<unknown>\"\n}"
response = http.request(request)
puts response.read_body{
"createdAt": "2023-11-07T05:31:56Z",
"exportTargetId": "<string>",
"tags": {},
"type": "<string>",
"uri": "<string>",
"$schema": "https://example.com/schemas/ArtifactVersionExportInfo.json"
}{
"$schema": "https://example.com/schemas/ErrorModel.json",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example"
}Body
application/json
Response
OK
Time of export creation
e.g. Dataset ID
Map of key-value tags, such as datasetSnapshotId=67d31cdfd5439671479939b4.
Show child attributes
Show child attributes
Export type: dataset, netapp-volume, report, model
Permalink to the entity containing the export e.g. Snapshot permalink
A URL to the JSON Schema for this object.
Example:
"https://example.com/schemas/ArtifactVersionExportInfo.json"
Last modified on August 19, 2026
Was this page helpful?
⌘I
Create
curl --request POST \
--url https://mycluster.domino.tech/flows/api/artifacts/v1/exports-callback \
--header 'Content-Type: application/json' \
--data '
{
"errorMsg": "<string>",
"id": "<string>",
"key": "<string>",
"status": "<string>",
"taskType": "<string>",
"update": "<unknown>"
}
'import requests
url = "https://mycluster.domino.tech/flows/api/artifacts/v1/exports-callback"
payload = {
"errorMsg": "<string>",
"id": "<string>",
"key": "<string>",
"status": "<string>",
"taskType": "<string>",
"update": "<unknown>"
}
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({
errorMsg: '<string>',
id: '<string>',
key: '<string>',
status: '<string>',
taskType: '<string>',
update: '<unknown>'
})
};
fetch('https://mycluster.domino.tech/flows/api/artifacts/v1/exports-callback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://mycluster.domino.tech/flows/api/artifacts/v1/exports-callback",
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([
'errorMsg' => '<string>',
'id' => '<string>',
'key' => '<string>',
'status' => '<string>',
'taskType' => '<string>',
'update' => '<unknown>'
]),
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 := "https://mycluster.domino.tech/flows/api/artifacts/v1/exports-callback"
payload := strings.NewReader("{\n \"errorMsg\": \"<string>\",\n \"id\": \"<string>\",\n \"key\": \"<string>\",\n \"status\": \"<string>\",\n \"taskType\": \"<string>\",\n \"update\": \"<unknown>\"\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("https://mycluster.domino.tech/flows/api/artifacts/v1/exports-callback")
.header("Content-Type", "application/json")
.body("{\n \"errorMsg\": \"<string>\",\n \"id\": \"<string>\",\n \"key\": \"<string>\",\n \"status\": \"<string>\",\n \"taskType\": \"<string>\",\n \"update\": \"<unknown>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://mycluster.domino.tech/flows/api/artifacts/v1/exports-callback")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"errorMsg\": \"<string>\",\n \"id\": \"<string>\",\n \"key\": \"<string>\",\n \"status\": \"<string>\",\n \"taskType\": \"<string>\",\n \"update\": \"<unknown>\"\n}"
response = http.request(request)
puts response.read_body{
"createdAt": "2023-11-07T05:31:56Z",
"exportTargetId": "<string>",
"tags": {},
"type": "<string>",
"uri": "<string>",
"$schema": "https://example.com/schemas/ArtifactVersionExportInfo.json"
}{
"$schema": "https://example.com/schemas/ErrorModel.json",
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example"
}