ByteChef LogoByteChef
Components

Apify

Apify is the largest ecosystem where developers build, deploy, and publish data extraction and web automation tools.

Categories: Marketing Automation

Type: apify/v1


Connections

Version: 1

Bearer Token

Properties

NameLabelTypeDescriptionRequired
tokenTokenSTRINGtrue

Actions

Get Last Run

Name: getLastRun

Get Apify Actor last run.

Properties

NameLabelTypeDescriptionRequired
actorIdActor IDSTRINGID of the actor that will be fetched.true

Example JSON Structure

{
  "label" : "Get Last Run",
  "name" : "getLastRun",
  "parameters" : {
    "actorId" : ""
  },
  "type" : "apify/v1/getLastRun"
}

Output

Type: OBJECT

Properties

NameTypeDescription
idSTRINGThe ID of the newly created opportunity.
nameSTRINGThe name of the newly created opportunity.

Output Example

{
  "id" : "",
  "name" : ""
}

Start Actor

Name: startActor

Starts an Apify Actor

Properties

NameLabelTypeDescriptionRequired
actorIdActor IDSTRINGID of the actor that will be run.true
bodyBodySTRINGThe JSON input to pass to the Actor [you can get the JSON from a run in your Apify account].true

Example JSON Structure

{
  "label" : "Start Actor",
  "name" : "startActor",
  "parameters" : {
    "actorId" : "",
    "body" : ""
  },
  "type" : "apify/v1/startActor"
}

Output

The output for this action is dynamic and may vary depending on the input parameters. To determine the exact structure of the output, you need to execute the action.