Enable a plugin in the system for a specific build type.
Enabled plugins will be available for use in jobs.
API for managing projects, jobs, datasets, and ETL pipelines on WebRobot.
The API uses API Keys for authentication. Include the X-API-Key header in all requests.
curl -i -X POST \
'http://docs.webrobot.eu/_mock/openapi/webrobot/api/admin/plugins/ean-image-sourcing/enable?buildType=development' \
-H 'X-API-Key: YOUR_API_KEY_HERE'curl -i -X GET \
'http://docs.webrobot.eu/_mock/openapi/webrobot/api/admin/plugins?buildType=development' \
-H 'X-API-Key: YOUR_API_KEY_HERE'Plugin file and metadata
Content disposition information for form data
curl -i -X POST \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/admin/plugins/upload \
-H 'Content-Type: multipart/form-data' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-F 'file[type]=string' \
-F 'file[parameters][property1]=string' \
-F 'file[parameters][property2]=string' \
-F 'file[fileName]=string' \
-F 'file[creationDate]=2019-08-24T14:15:22Z' \
-F 'file[modificationDate]=2019-08-24T14:15:22Z' \
-F 'file[readDate]=2019-08-24T14:15:22Z' \
-F 'file[size]=0' \
-F 'file[name]=string' \
-F pluginId=my-plugin \
-F buildType=development \
-F buildNumber=1 \
-F 'organizationIds=1,2,3'curl -i -X GET \
'http://docs.webrobot.eu/_mock/openapi/webrobot/api/html/{url}/{protocol}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'curl -i -X GET \
'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}/{id}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'curl -i -X PUT \
'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}/{id}' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"property1": {},
"property2": {}
}'curl -i -X DELETE \
'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}/{id}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'curl -i -X GET \
'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}?page=0&pageSize=50' \
-H 'X-API-Key: YOUR_API_KEY_HERE'curl -i -X POST \
'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"property1": {},
"property2": {}
}'curl -i -X GET \
http://docs.webrobot.eu/_mock/openapi/health \
-H 'X-API-Key: YOUR_API_KEY_HERE'