From eee19ffc61fd82a5cf990413c12124d439ebec55 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Thu, 23 Jun 2022 00:52:13 +0000 Subject: [PATCH] --- server/AyaNova/Controllers/IntegrationController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/AyaNova/Controllers/IntegrationController.cs b/server/AyaNova/Controllers/IntegrationController.cs index 8443bc13..5178dbb9 100644 --- a/server/AyaNova/Controllers/IntegrationController.cs +++ b/server/AyaNova/Controllers/IntegrationController.cs @@ -60,7 +60,7 @@ namespace AyaNova.Api.Controllers if (o == null) return BadRequest(new ApiErrorResponse(biz.Errors)); else - return CreatedAtAction(nameof(IntegrationController.GetIntegration), new { id = o.Id, version = apiVersion.ToString() }, new ApiCreatedResponse(o)); + return CreatedAtAction(nameof(IntegrationController.GetIntegration), new { integrationAppId = o.IntegrationAppId, version = apiVersion.ToString() }, new ApiCreatedResponse(o)); }