Default value of "action" in nack link via HTTP API

Hello!

I’m reading the documentation here: https://eventstore.org/docs/http-api/competing-consumers/index.html

And I see that the nack links that are returned when you get a event from the persistent subscription have no action.

http://localhost:2113/subscriptions/newstream/competing_consumers_group1/nack/c322e299-cb73-4b47-97c5-5054f920746f

If I do a POST call to these links, what is the default action it will execute?

Thanks!

It should NACK the message.

Yes, but as I understand the NACK has 4 possible actions

  • Park: Don’t retry the message, park it until a request is sent to reply the parked messages
  • Retry: Retry the message
  • Skip: Discard the message
  • Stop: Stop the subscription
    There needs to be one of these. What of these is the default?

Retry is the default I believe (and there should probably be multiple links available). I have made a note to review this.