cURL
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>" }
Get task parameters based on the specific action. For example, the URL from ‘Go to Web Page’ or the text from ‘Enter Text’.
Use the access_token obtained from POST /token
List of task IDs
List of action types to retrieve parameters for
Action parameters retrieved
Show child attributes