-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspring-integration-http.opencollection.json
More file actions
97 lines (97 loc) · 2.68 KB
/
Copy pathspring-integration-http.opencollection.json
File metadata and controls
97 lines (97 loc) · 2.68 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
{
"opencollection": "1.0.0",
"info": {
"name": "Spring Integration HTTP Inbound Gateway API",
"version": "6.3.0"
},
"items": [
{
"info": {
"name": "Inbound Adapter",
"type": "folder"
},
"items": [
{
"info": {
"name": "Send Inbound Message",
"type": "http"
},
"http": {
"method": "POST",
"url": "http://localhost:8080/integration/inbound",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Sends a message to the Spring Integration inbound channel adapter. The message is placed on the configured message channel for downstream processing."
}
]
},
{
"info": {
"name": "Gateway",
"type": "folder"
},
"items": [
{
"info": {
"name": "Send Message and Receive Reply",
"type": "http"
},
"http": {
"method": "POST",
"url": "http://localhost:8080/integration/gateway",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Sends a message to the Spring Integration HTTP inbound gateway and returns the reply. The request waits synchronously for a reply from the integration flow."
},
{
"info": {
"name": "Send GET Request to Integration Gateway",
"type": "http"
},
"http": {
"method": "GET",
"url": "http://localhost:8080/integration/gateway/:path",
"params": [
{
"name": "path",
"value": "",
"type": "path",
"description": "Configurable path segment mapped to message header"
}
]
},
"docs": "Sends an HTTP GET request through the integration gateway. Path variables and query parameters are mapped to message headers."
},
{
"info": {
"name": "Send POST Request to Integration Gateway",
"type": "http"
},
"http": {
"method": "POST",
"url": "http://localhost:8080/integration/gateway/:path",
"params": [
{
"name": "path",
"value": "",
"type": "path"
}
],
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Sends an HTTP POST request to a path-configured integration gateway"
}
]
}
],
"bundled": true
}