Last modified by Ashterix on 2024/07/11 09:57

From version 3.1
edited by Ashterix
on 2024/05/10 11:09
Change comment: There is no comment for this version
To version 5.1
edited by Ashterix
on 2024/07/11 09:57
Change comment: Renamed back-links.

Summary

Details

Page properties
Content
... ... @@ -86,7 +86,7 @@
86 86  {{/code}}
87 87  
88 88  (% class="wikigeneratedid" %)
89 -A detailed overview of configuration parameters is available in the [[Bundle Settings section>>doc:docs.JsonRpcBundle.config]]
89 +A detailed overview of configuration parameters is available in the [[Bundle Settings section>>doc:docs.JsonRpcBundle.config_v7.config]]
90 90  
91 91  
92 92  
... ... @@ -132,7 +132,7 @@
132 132  A GET request at the entry point will return documentation on the available methods and the parameters they accept.
133 133  
134 134  {{warning}}
135 -The format of the documentation may vary depending on your settings. See [[Bundle Settings>>doc:docs.JsonRpcBundle.config]]
135 +The format of the documentation may vary depending on your settings. See [[Bundle Settings>>doc:docs.JsonRpcBundle.config_v7.config]]
136 136  {{/warning}}
137 137  
138 138  **{{code language="none"}}GET: /api{{/code}}**
... ... @@ -139,14 +139,20 @@
139 139  
140 140  {{code language="json"}}
141 141  {
142 - "transport": "POST",
143 143   "envelope": "JSON-RPC-2.0/UFO-RPC-6",
144 144   "contentType": "application/json",
145 145   "description": "",
146 - "target": "/api",
145 + "transport": {
146 + "sync": {
147 + "scheme": "https",
148 + "host": "example.com",
149 + "path": "/api",
150 + "method": "POST"
151 + }
152 + },
147 147   "methods": {
148 - "ping": {
149 - "name": "ping",
154 + "ping": {
155 + "name": "ping",
150 150   "description": "",
151 151   "parameters": [],
152 152   "returns": "string",
... ... @@ -178,7 +178,7 @@
178 178  }
179 179  {{/code}}
180 180  
181 -== Change [[Settings>>doc:docs.JsonRpcBundle.config]] to meet your needs ==
187 +== Change [[Settings>>doc:docs.JsonRpcBundle.config_v7.config]] to meet your needs ==
182 182  
183 183  
184 184  == Add [[Custom Procedures>>doc:docs.JsonRpcBundle.add_rpc_service.WebHome]] ==