diff --git a/src/ReC.API/Controllers/RecActionController.cs b/src/ReC.API/Controllers/RecActionController.cs index ca24e27..a675b87 100644 --- a/src/ReC.API/Controllers/RecActionController.cs +++ b/src/ReC.API/Controllers/RecActionController.cs @@ -18,7 +18,7 @@ public class RecActionController(IMediator mediator, IConfiguration config) : Co /// The ID of the profile. /// A token to cancel the operation. /// An HTTP 202 Accepted response indicating the process has been started. - [HttpPost("invoke")] + [HttpPost("invoke/{profileId}")] [ProducesResponseType(StatusCodes.Status202Accepted)] public async Task Invoke([FromRoute] int profileId, CancellationToken cancel) { @@ -43,7 +43,7 @@ public class RecActionController(IMediator mediator, IConfiguration config) : Co /// /// Gets all RecActions for a given profile. /// - /// The ID of the profile. + /// /// A token to cancel the operation. /// A list of RecActions for the specified profile. [HttpGet]