From aba9b11f07f5eea760c14eb13d2ea0102747ac40 Mon Sep 17 00:00:00 2001 From: Jeremy Vyska Date: Sat, 18 Oct 2025 13:45:00 +0200 Subject: [PATCH] Fix #250: Clarify case sensitivity of APIPublisher and APIGroup for subscriptions --- content/docs/BestPractices/api-page/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/BestPractices/api-page/index.md b/content/docs/BestPractices/api-page/index.md index b1dc44889..cc23701ea 100644 --- a/content/docs/BestPractices/api-page/index.md +++ b/content/docs/BestPractices/api-page/index.md @@ -35,7 +35,7 @@ The properties that must be defined are: - ODataKeyFields ### APIPublisher -The name of the API publisher is usually the company creating the API. It is the first custom part in the URL for a given endpoint. The value is case insensitive. +The name of the API publisher is usually the company creating the API. It is the first custom part in the URL for a given endpoint. While the value is case insensitive for HTTP operations (GET, POST, etc.), it is case sensitive when checking for active subscriptions. Example: @@ -44,7 +44,7 @@ APIPublisher = 'contoso'; ``` ### APIGroup -Sets the group of the API endpoint that page or query is exposed in. In the URL the APIGroup comes after the APIPublisher. It can be used to distinguish different API apps or groups of APIs from each other. The value is case insensitive. +Sets the group of the API endpoint that page or query is exposed in. In the URL the APIGroup comes after the APIPublisher. It can be used to distinguish different API apps or groups of APIs from each other. While the value is case insensitive for HTTP operations (GET, POST, etc.), it is case sensitive when checking for active subscriptions. Example: