Skip to main content
GET
/
api
/
v1
/
workflows
/
{workflowId}
cURL
curl --request GET \
  --url https://app.getpaperjet.com/api/v1/workflows/{workflowId} \
  --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>"
}

Authorizations

x-api-key
string
header
required

Path Parameters

workflowId
string
required

Response

200 - application/json
id
string
required
name
string
required
description
string
required
configuration
object
required
createdAt
string
required
updatedAt
string
required
ownerId
string
required