Choose a server to use:
pipeline_id | string | required |
curl --request POST \
--url /api/v1.0//executions/{pipeline_id}
No response body |
xxxxxxxxxx
No response
limit | integer | Default: 20 | optional |
pipeline_id | string | optional | |
adara_id | string | optional |
xxxxxxxxxx
curl --request GET \
--url /api/v1.0//executions?limit=20&pipeline_id={pipeline_id}&adara_id={adara_id}
object | object | ||
active | boolean | optional | |
response | array[object] | optional | |
job_id | string | optional | |
pipeline_id | string | optional | |
filename | string | optional | |
status | string | Enum: | optional |
created | integer | optional | |
updated | integer | optional |
xxxxxxxxxx
{
"active": "{boolean}",
"response": [
{
"job_id": "{string}",
"pipeline_id": "{string}",
"filename": "{string}",
"status": "{string}",
"created": "{integer}",
"updated": "{integer}"
}
]
}
object | object | required | |
origin | object | required | |
destination | object | required | |
adara_id | string | required | |
input | object | required | |
compression | string | optional | |
file_type | string | Enum: | required |
delimiter | string | optional | |
file_pattern | string | required | |
encryption | object | optional | |
key | string | required | |
type | string | required |
xxxxxxxxxx
curl --request POST \
--url /api/v1.0//pipelines \
--data '{
"origin": {},
"destination": {},
"adara_id": "{string}",
"input": {
"compression": "gzip",
"file_type": "json",
"delimiter": "|",
"file_pattern": "/input/*.csv",
"encryption": {
"key": "{string}",
"type": "{string}"
}
}
}'
xxxxxxxxxx
{
"schema": "{}"
}
xxxxxxxxxx
curl --request GET \
--url /api/v1.0//pipelines
object | object | ||
active | boolean | optional | |
response | array | optional |
xxxxxxxxxx
{
"active": "{boolean}",
"response": [
"{array...}"
]
}
xxxxxxxxxx
curl --request GET \
--url /api/v1.0//origins
object | object | ||
active | boolean | optional | |
response | array[object] | optional | |
type | string | required | |
parameters | object | required |
xxxxxxxxxx
{
"active": "{boolean}",
"response": [
{
"type": "{string}",
"parameters": {}
}
]
}
xxxxxxxxxx
curl --request GET \
--url /api/v1.0//destinations
object | object | ||
active | boolean | optional | |
response | array[object] | optional | |
name | string | required | |
parameters | object | required |
xxxxxxxxxx
{
"active": "{boolean}",
"response": [
{
"name": "onboarding",
"parameters": {}
}
]
}