From 7fc4eb03d10103bc8cbcb126675ec70072b58ad6 Mon Sep 17 00:00:00 2001 From: Dan Moore Date: Wed, 24 Sep 2025 11:21:36 -0600 Subject: [PATCH] updated parameter name I found this name confusing when using the python client so wanted to change it to be more precise. I don't think that a variable name change is a breaking change, since I didn't change the type or the order of the parameters. --- src/main/api/upsertEntityGrant.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/api/upsertEntityGrant.json b/src/main/api/upsertEntityGrant.json index 5317640a..f40a6839 100644 --- a/src/main/api/upsertEntityGrant.json +++ b/src/main/api/upsertEntityGrant.json @@ -9,9 +9,9 @@ "errorResponse": "Errors", "params": [ { - "name": "entityId", + "name": "targetEntityId", "comments": [ - "The Id of the Entity that the User/Entity is being granted access to." + "The Id of the Entity that the User or Entity is being granted access to." ], "type": "urlSegment", "javaType": "UUID" @@ -31,4 +31,4 @@ "javaType": "EntityGrantRequest" } ] -} \ No newline at end of file +}