-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttp_request_create.json
More file actions
141 lines (141 loc) · 3.4 KB
/
Copy pathhttp_request_create.json
File metadata and controls
141 lines (141 loc) · 3.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"runtime_name": "http::request::create",
"runtime_parameter_definitions": [
{
"data_type_identifier": {
"type": {
"DataTypeIdentifier": "HTTP_METHOD"
}
},
"runtime_name": "http_method",
"default_value": null,
"name": [
{
"code": "en-US",
"content": "HTTP Method"
}
],
"description": [
{
"code": "en-US",
"content": "Defines the HTTP method to be used, such as GET, POST, PUT, or DELETE."
}
],
"documentation": [
{
"code": "en-US",
"content": "Specifies the request method that determines the type of HTTP operation to perform."
}
]
},
{
"data_type_identifier": {
"type": {
"DataTypeIdentifier": "HTTP_HEADER_MAP"
}
},
"runtime_name": "headers",
"default_value": null,
"name": [
{
"code": "en-US",
"content": "HTTP Headers"
}
],
"description": [
{
"code": "en-US",
"content": "A collection of key-value pairs containing additional request metadata."
}
],
"documentation": [
{
"code": "en-US",
"content": "Optional headers that can define content type, authorization, cookies, caching policies, and more."
}
]
},
{
"data_type_identifier": {
"type": {
"DataTypeIdentifier": "HTTP_URL"
}
},
"runtime_name": "url",
"default_value": null,
"name": [
{
"code": "en-US",
"content": "Request URL"
}
],
"description": [
{
"code": "en-US",
"content": "The target URL to which the HTTP request will be sent."
}
],
"documentation": [
{
"code": "en-US",
"content": "Specifies the endpoint address, including protocol, host, path, and query parameters, where the request is directed."
}
]
},
{
"data_type_identifier": {
"type": {
"GenericKey": "P"
}
},
"runtime_name": "payload",
"default_value": null,
"name": [
{
"code": "en-US",
"content": "Request Body"
}
],
"description": [
{
"code": "en-US",
"content": "The data to include in the body of the request, typically used with methods like POST or PUT."
}
],
"documentation": [
{
"code": "en-US",
"content": "Contains the request payload, such as JSON, XML, form data, or binary content, depending on the Content-Type header."
}
]
}
],
"return_type_identifier": {
"type": {
"DataTypeIdentifier": "HTTP_REQUEST"
}
},
"throws_error": false,
"generic_keys": [
"P"
],
"name": [
{
"code": "en-US",
"content": "Construct HTTP Request"
}
],
"description": [
{
"code": "en-US",
"content": "Constructs an HTTP request object using the specified method, headers, URL, and payload."
}
],
"documentation": [
{
"code": "en-US",
"content": "Generates an HTTP request object that can be sent to a server. The request includes an HTTP method, optional headers, a destination URL, and an optional request body."
}
],
"deprecation_message": []
}