Files
windmill/community/scripts/u/bot/http_request.json
Ruben Fiszel 2e132878e4 first commit
2022-05-05 04:25:58 +02:00

26 lines
580 B
JSON
Executable File

{
"summary": "Do a simple HTTP post request",
"description": "This example pass a value as JSON data and use a secret as bearer token",
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"my_value"
],
"properties": {
"my_value": {
"type": "string",
"default": null,
"description": ""
}
}
},
"is_template": true,
"lock": [
"certifi==2021.10.8",
"charset-normalizer==2.0.12",
"idna==3.3",
"requests==2.27.1",
"urllib3==1.26.9"
]
}