メインコンテンツへスキップ
POST
/
task
/
updateActionProperties
アクションパラメータの更新
curl --request POST \
  --url https://openapi.octoparse.com/task/updateActionProperties \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "taskId": "<string>",
  "actions": [
    {
      "actionType": "<string>",
      "actionId": "<string>",
      "properties": [
        {
          "name": "<string>",
          "value": "<string>"
        }
      ]
    }
  ]
}
'
{
  "data": {
    "message": "<string>"
  },
  "requestId": "<string>"
}

承認

Authorization
string
header
必須

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

ボディ

application/json
taskId
string
必須
actions
object[]
必須

レスポンス

200 - application/json

アクションプロパティの更新に成功しました。

data
object
requestId
string