diff --git a/src/ReC.Application/RecActions/Commands/InvokeRecActionCommand.cs b/src/ReC.Application/RecActions/Commands/InvokeRecActionCommand.cs index 173ed17..93718a4 100644 --- a/src/ReC.Application/RecActions/Commands/InvokeRecActionCommand.cs +++ b/src/ReC.Application/RecActions/Commands/InvokeRecActionCommand.cs @@ -37,6 +37,9 @@ public class InvokeRecActionCommandHandler(ISender sender) : IRequestHandler await http.SendAsync(new HttpRequestMessage(HttpMethod.Trace, action.EndpointUri), cancel), _ => throw new BadRequestException($"The REST type {action.RestType} is not supported.") }; + + var body = await response.Content.ReadAsStringAsync(cancel); + var header = response.Headers.ToDictionary(); } } } \ No newline at end of file