Remote Procedure Calls
Use Make to debug Remote Procedure Calls (RPCs)
To find the RPC debug tool:
Navigate to the Custom apps area.
Select your custom app from the list.
Click the Remote Procedures tab.
Select the RPC you want to debug.
Click Test RPC.

RPC page
Compare the tabs below to how to access information about your RPCs in Make.
Communication tab
After creating a new RPC, you can modify the default template in the Communications tab for your needs.

Parameters tab
By default, the Parameters tab is empty. Here you can add any parameter you need. You can also add mappable parameters from a module. Learn more about using RPC parameters.


RPC debug tool
The RPC debug tool works the same way modules do.
Specify the connection and other fields (parameters) if needed.
Click the Test button.
The call, which you specified before in the RPC communication, will be executed.
You will see the output
that you specified in the RPC communication.
If you specified output as "label"
and "value"
(with the purpose of using it inside a Select parameter), do not expect to see the full server response there.

Debug RPCs in the web console
Sometimes you may need to look into the request you're sending and the response from the API.
You can see more details about the RPC you're testing by opening your browser's dev console: Network tab.
The debug
values show the request being sent and the response received by the API.

Last updated