Skip to main content
Version: 4.2.0

Define subscriber with all subscriptions

PUT 

https://localhost:8900/subscriber/:subscriber_id

Define or redefine a subscriber with all subscriptions. In case the subscriber does not exist, it is created. In case the subscriber exist, all subscriptions get replaced.

Request​

Path Parameters

    subscriber_id stringrequired

    The identifier of the subscriber

Body

array

The list of all subscriptions.

  • Array [

  • message_type string

    The name of the action to listen to

    wait_for_completion boolean

    Default value: true

    If an action is sent to this subscriber, the event sender should wait until this subscriber has processed the message and send a done message. This is the expected behaviour of every actor and defaults to true.

    timeout number

    Default value: 60

    This is the duration in seconds this subscriber has time to execute the action. After this time the sender assumes a failure and rejects the result of this actor.

  • ]

Responses​

The subscriber

Schema

    id string

    The identifier of this subscriber

    subscriptions

    object

    The dictionary of subscriptions, where the key is the message type

    property name*

    Subscription

    The definition of an action subscription

    message_type string

    The name of the action to listen to

    wait_for_completion boolean

    Default value: true

    If an action is sent to this subscriber, the event sender should wait until this subscriber has processed the message and send a done message. This is the expected behaviour of every actor and defaults to true.

    timeout number

    Default value: 60

    This is the duration in seconds this subscriber has time to execute the action. After this time the sender assumes a failure and rejects the result of this actor.

curl -L -X PUT 'https://localhost:8900/subscriber/:subscriber_id' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '[
{
"message_type": "string",
"wait_for_completion": true,
"timeout": 60
}
]'
Request Collapse all
Base URL
https://localhost:8900
Parameters
— pathrequired
Body
[
  {
    "message_type": "string",
    "wait_for_completion": true,
    "timeout": 60
  }
]