From 336176f8cb59621b6d1d784080fc85e7e5451277 Mon Sep 17 00:00:00 2001 From: Conor Macpherson Date: Mon, 27 Mar 2023 11:12:08 -0400 Subject: [PATCH] remove get customer by license id functionality in favor of a check in CWS. --- model/hosted_customer.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/model/hosted_customer.go b/model/hosted_customer.go index d2856eab45..8d83d2792c 100644 --- a/model/hosted_customer.go +++ b/model/hosted_customer.go @@ -68,3 +68,7 @@ type SelfHostedExpansionRequest struct { Seats int `json:"seats"` LicenseId string `json:"license_id"` } + +type GetSelfHostedCustomerRequest struct { + LicenseID string `json:"license_id"` +}