v1
latestSwagger 2.02026-07-17421084.8 KBcall
Invoke an actor method
Call invokes the methodName method of the actor instance indicated by actorType and actorId. The request body must be a (possibly zero-length) JSON array whose elements are used as the actual parameters of the actor method. The result of the call is the result of invoking the target actor method unless the async or promise pragma header is specified. If the actor method returns void or undefined, then a 204 - No Content reponse is returned.
Path parameters
The actor type
The actor instance id
The actor method to be invoked
Query parameters
The session is an opaque string used by the KAR runtime to enable reentrancy for nested actor calls and to track caller-callee relationships for failure recovery
Headers
Optionally specify the async pragma to make a non-blocking call. Optionally specify the promise pragma to make a non-blocking call and obtain a request id to query later.
Response
The result of invoking the actor method