Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 56 additions & 1 deletion definitions/http/flow_type/http.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,61 @@
{
"identifier": "HTTP",
"settings": [],
"settings": [
{
"identifier": "HTTP_URL",
"unique": false,
"data_type_identifier": "HTTP_URL",
"default_value": null,
"name": [
{
"code": "en-US",
"content": "URL"
}
],
"description": [
{
"code": "en-US",
"content": "Specifies the HTTP URL endpoint."
}
]
},
{
"identifier": "HTTP_METHOD",
"unique": false,
"data_type_identifier": "HTTP_METHOD",
"default_value": null,
"name": [
{
"code": "en-US",
"content": "Method"
}
],
"description": [
{
"code": "en-US",
"content": "Specifies the HTTP request method (e.g., GET, POST, PUT, DELETE)."
}
]
},
{
"identifier": "HTTP_HOST",
"unique": false,
"data_type_identifier": "HTTP_HOST",
"default_value": null,
"name": [
{
"code": "en-US",
"content": "Host"
}
],
"description": [
{
"code": "en-US",
"content": "Specifies the target host name or IP address."
}
]
}
],
"input_type_identifier": "HTTP_REQUEST",
"return_type_identifier": "HTTP_RESPONSE",
"editable": false,
Expand Down