Path parameters
-
id
string Required ID of the plugin to update
Body
Required
-
name
string -
status
string Values are
draft
,unpublished
, orpublished
. Default value isdraft
. -
comments
string Additional comments regarding your plugin
-
should_test
boolean Required Flag for the testing the plugin
Default value is
false
. -
allowed_hostnames
array[string] -
file
string(binary) -
test_data
string(binary)
PUT
/api/v1/plugins/{id}
curl \
--request PUT 'https://api.crawlora.com/api/v1/plugins/{id}' \
--header "x-api-key: $API_KEY" \
--header "Content-Type: multipart/form-data" \
--form "name=string" \
--form "status=draft" \
--form "comments=string" \
--form "should_test=false" \
--form "allowed_hostnames[]=string" \
--form "file=@file" \
--form "test_data=@file"
Response examples (200)
{
"is_error": true,
"message": "string",
"correlator_id": "string",
"data": {
"id": "string",
"name": "string",
"status": "string",
"code_path": "string",
"language": "string",
"comments": "string",
"description": "string",
"allowed_hostnames": [
"string"
],
"test_data": "string",
"test_status": "string",
"test_error": "string",
"test_response": "string",
"created_at": "string",
"updated_at": "string"
}
}
Response examples (401)
{
"is_error": true,
"message": "string",
"correlator_id": "string",
"data": {}
}
Response examples (404)
{
"is_error": true,
"message": "string",
"correlator_id": "string",
"data": {}
}
Response examples (422)
{
"is_error": true,
"message": "string",
"correlator_id": "string",
"data": {}
}