メインコンテンツへスキップ
POST
/
task
/
getActions
アクションパラメータの取得
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>"
}

承認

Authorization
string
header
必須

POST /tokenで取得したaccess_tokenを使用します。

ボディ

application/json
taskIds
string[]
必須

タスクIDのリスト

actionTypes
string[]
必須

パラメーターを取得するアクションタイプのリスト

レスポンス

200 - application/json

アクションパラメーターの取得に成功しました。

data
object[]
requestId
string