invocation
service
This endpoint lets you invoke a method in another Dapr enabled app.
post/v1.0/invoke/{appId}/method/{method-name}
Path parameters
appIdstring required
the App ID associated with the remote app
Example:nodeapp
the App ID associated with the remote app
method-namestring required
name of the method to be invoked
Example:neworder
name of the method to be invoked
Headers
Content-Typestring
the App ID associated with the remote app
Example:application/json
the App ID associated with the remote app
Parameters
#/components/securitySchemes/ApiKeyAuth — unresolved $ref
Request body
object required
Within the body of the request place the data you want to send to the service: { "arg1": 10, "arg2": 23, "operator": "+" }
Example request
{
"arg1": 10,
"arg2": 23,
"operator": "+"
}Response
Operation succeeded