From 2c94ac7f38fdccf45128092b236b596c1aafe298 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Tue, 27 Aug 2024 09:54:24 -0400 Subject: [PATCH] Fix appId,endpointId order in C Sharp RotateSecretWithHttpInfoAsync call --- csharp/Svix/Endpoint.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/Svix/Endpoint.cs b/csharp/Svix/Endpoint.cs index f4d6b2db1..526f4612a 100644 --- a/csharp/Svix/Endpoint.cs +++ b/csharp/Svix/Endpoint.cs @@ -415,8 +415,8 @@ public async Task RotateSecretAsync(string appId, string endpointId, Endpo try { var lResponse = await _endpointApi.V1EndpointRotateSecretWithHttpInfoAsync( - endpointId, appId, + endpointId, secret, idempotencyKey);