Skip to content

Commit 14786af

Browse files
API design: Increase character limit for saved scripts (#16699)
API design for: #16668 --------- Co-authored-by: Rachael Shaw <[email protected]>
1 parent 94da1ec commit 14786af

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docs/REST API/rest-api.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -7461,8 +7461,11 @@ Run a live script and get results back (5 minute timeout). Live scripts only run
74617461
| Name | Type | In | Description |
74627462
| ---- | ------- | ---- | -------------------------------------------- |
74637463
| host_id | integer | body | **Required**. The host id to run the script on. |
7464-
| script_id | integer | body | The ID of the existing saved script to run. Only one of either `script_id` or `script_contents` can be included in the request; omit this parameter if using `script_contents`. |
7465-
| script_contents | string | body | The contents of the script to run. Only one of either `script_id` or `script_contents` can be included in the request; omit this parameter if using `script_id`. |
7464+
| script_id | integer | body | The ID of the existing saved script to run. Only one of either `script_id`, `script_name` or `script_contents` can be included in the request; omit this parameter if using `script_contents` or `script_name`. |
7465+
| script_contents | string | body | The contents of the script to run. Only one of either `script_contents`, `script_id` or `script_name` can be included in the request; omit this parameter if using `script_id` or `script_name`. |
7466+
| script_name | string | body | The name of the existing saved script to run. Only one of either `script_name`, `script_id` or `script_contents` can be included in the request; omit this parameter if using `script_contents` or `script_id`. |
7467+
| team_id | integer | body | ID of the team the saved script referenced by `script_name` belongs to. Default: `0` (hosts assigned to "No team") |
7468+
74667469

74677470
> Note that if both `script_id` and `script_contents` are included in the request, this endpoint will respond with an error.
74687471

0 commit comments

Comments
 (0)