invocation
service

This endpoint lets you invoke a method in another Dapr enabled app.

put/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

any app arguments

Example request

{
  "arg1": 10,
  "arg2": 23,
  "operator": "+"
}

Response

Operation succeeded

Changes