curl --request GET \
--url https://app.getpaperjet.com/api/v1/workflows \
--header 'x-api-key: <api-key>'[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"configuration": {
"objects": [
{
"name": "<string>",
"description": "<string>",
"fields": [
{
"name": "<string>",
"description": "<string>",
"type": "<string>"
}
],
"tables": [
{
"name": "<string>",
"description": "<string>",
"columns": [
{
"name": "<string>",
"description": "<string>",
"type": "<string>"
}
]
}
]
}
]
},
"createdAt": "<string>",
"updatedAt": "<string>",
"ownerId": "<string>"
}
]Get all workflows for the organization
curl --request GET \
--url https://app.getpaperjet.com/api/v1/workflows \
--header 'x-api-key: <api-key>'[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"configuration": {
"objects": [
{
"name": "<string>",
"description": "<string>",
"fields": [
{
"name": "<string>",
"description": "<string>",
"type": "<string>"
}
],
"tables": [
{
"name": "<string>",
"description": "<string>",
"columns": [
{
"name": "<string>",
"description": "<string>",
"type": "<string>"
}
]
}
]
}
]
},
"createdAt": "<string>",
"updatedAt": "<string>",
"ownerId": "<string>"
}
]Was this page helpful?