Skip to content

Commit 352d7f3

Browse files
authoredMar 9, 2023
Merge pull request #11 from plesk/HOTFIX-add-ka-retailer-param
[HOTFIX] Add source parameter for Plesk Key Administrator
2 parents 0b90e62 + d4cecdc commit 352d7f3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎lib/KaApi.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ public function testConnection(): bool
5353
return true;
5454
}
5555

56-
5756
/**
5857
* @throws Exception
5958
*/
@@ -66,7 +65,7 @@ public function createLicense(Plan $plan, int $servers, int $websites): License
6665
];
6766

6867
try {
69-
$response = $this->client->post('/jsonrest/business-partner/30/keys?return-key-state=yes', $options);
68+
$response = $this->client->post('/jsonrest/business-partner/30/keys?return-key-state=yes&retailer=whmcs-ka', $options);
7069
$data = json_decode($response->getBody()->getContents(), true, 512, JSON_THROW_ON_ERROR);
7170
} catch (\Throwable $e) {
7271
throw new Exception($e->getMessage(), 0, $e);

0 commit comments

Comments
 (0)
Please sign in to comment.