Skip to main content
POST
/
task
/
getActions
Get Action Parameters
curl --request POST \
  --url https://openapi.octoparse.com/task/getActions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "taskIds": [
    "<string>"
  ],
  "actionTypes": [
    "<string>"
  ]
}
'
{
  "data": [
    {
      "taskId": "<string>",
      "actions": [
        {}
      ]
    }
  ],
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

Use the access_token obtained from POST /token

Body

application/json
taskIds
string[]
required

List of task IDs

actionTypes
string[]
required

List of action types to retrieve parameters for

Response

200 - application/json

Action parameters retrieved

data
object[]
requestId
string