Skip to main content
POST
/
api
/
v1
/
workflows
cURL
curl --request POST \
  --url https://app.getpaperjet.com/api/v1/workflows \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "name": "<string>",
  "description": "",
  "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>"
              }
            ]
          }
        ]
      }
    ]
  }
}'
{
  "workflowId": "<string>",
  "message": "<string>"
}

Authorizations

x-api-key
string
header
required

Body

application/json
name
string
required
Minimum length: 1
configuration
object
required
description
string
default:""

Response

workflowId
string
required
message
string
required