How to solve invalid swagger warning

Viewed 271

How may I solve this warning from swagger? I have two identical routes, one for get and another for put. This only occurs on homologation environment, in devevelopment environment there is no warning.

Warning message:

{"messages":["attribute paths.'/api/Notificacoes/{id}'(get).operationId is repeated"]}

Thanks.

enter image description here

1 Answers

Most likely you have more than one route specified for one method.

Related