Trigger receive task end with 204 code

Hi Forum Members,

i’m trying to achieve to continue my process Receive Task with Rest Call.
request:
{
“action”:“signal”,
“variables”: []
}

i’m calling rest api /runtime/executions/{id} action: signal or trigger and always i get response code 204 and process is suspended. What am i doing wrong please?

Thank you very much
greetings Jakub

Looking at the code, a 204 seems to be thrown when your execution is removed as part of the action (which is probably the wanted behavior), so that seems to be allright: flowable-engine/modules/flowable-rest/src/main/java/org/flowable/rest/service/api/runtime/process/ExecutionResource.java at main · flowable/flowable-engine · GitHub

Where do you verify this?

Can you share a bit more about your process and which execution your signalling?