sendRequest
Submit gRPC requests to a server by specifying the proto file path, server address, service, method, and request body in JSON format, with optional headers and SSL configuration.
Instructions
Send a request to a gRPC server
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | Address of the gRPC server (e.g., it2.trylion-customer-api.askul-it.com:443) | |
| body | Yes | Request body in JSON format | |
| config | No | Configuration options for the request | |
| headers | No | Optional headers to include in the request | |
| method | Yes | Method name (e.g., GetAddress) | |
| path | Yes | Path to the proto file (Full path) | |
| service | Yes | Service name (e.g., AddressService) |