Create Voucher via Open API Not Working "Path not found" ERROR - Omada SDN Controller Open API v1

Hi,
I have this weird issue that when I tried testing the https://use1-omada-northbound.tplinkcloud.com/doc.html#/00%20All/Voucher/createVoucherGroup
/openapi/v1/{omadacId}/sites/{siteId}/hotspot/voucher-groups
Controller Version: 5.14.32.3
It will just return this response "Not Found" and this is only affect the Voucher endpoint.
{"timestamp":1736160844088,"status":404,"error":"Not Found","path":"/openapi/v1/{omadacID}/sites/siteID/hotspot/voucher-groups"}
Permissions are all set as well.
And here's my complete PHP test code.
------------------------------------------------------------------
<?php
// Define the common variables
$server_ip = "{removed}";
$omadac_id = "{removed}";
$site_id = "{removed}";
$access_token = "AT-js2IYJDT12AVhRknqImSS6KnGNJ9UnMh";
// Construct the URL
$url = "https://{$server_ip}:8043/openapi/v1/{$omadac_id}/sites/{$site_id}/hotspot/voucher-groups";
// Initialize cURL
$ch = curl_init($url);
// Set cURL options
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // Only for testing; remove for production
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); // Only for testing; remove for production
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Content-Type: application/json',
"Authorization: AccessToken={$access_token}"
]);
// Add your POST data here
$voucher_data = [
"name" => "API Generated Voucher",
"amount" => 5,
"codeLength" => 6,
"codeForm" => [0, 1],
"limitType" => 0,
"limitNum" => 1,
"durationType" => 1,
"duration" => 60,
"timingType" => 1,
"rateLimit" => [
"mode" => 0,
"rateLimitProfileId" => "",
"customRateLimit" => [
"downLimitEnable" => true,
"downLimit" => 3024,
"upLimitEnable" => true,
"upLimit" => 3024
]
],
"trafficLimitEnable" => true,
"trafficLimit" => 1024,
"trafficLimitFrequency" => 0,
"unitPrice" => 1,
"currency" => "PHP",
"applyToAllPortals" => true,
"portals" => [],
"expirationTime" => 0,
"effectiveTime" => 0,
"logout" => true,
"description" => "demo from the API",
"printComments" => ""
];
$post_data = [
"createVoucherGroupOpenApiVO" => $voucher_data
];
// Set the POST data
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($post_data));
// Execute the request
$response = curl_exec($ch);
// Check for errors
if (curl_errno($ch)) {
echo 'Curl error: ' . curl_error($ch);
} else {
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if ($http_code === 200) {
echo "Success: " . $response;
} else {
echo "Error: HTTP Status Code {$http_code}\n";
echo "Response: " . $response;
}
}
// Close cURL session
curl_close($ch);
?>
------------------------------------------------------------------
I hope from TP-link Developer team can check this.
Thank you
- Copy Link
- Subscribe
- Bookmark
- Report Inappropriate Content
its working. My bad i realize that my api client role was on viewer. I just changed to administrator.
- Copy Link
- Report Inappropriate Content
The error message "operation forbidden" indicates that the controller has already supported this feature; otherwise, it will report the previous error.
Please check the following :
If the siteid is correct or not;
If the permissions are correct or not;
If other openapi with siteid are available or not;
- Copy Link
- Report Inappropriate Content
@Wifi-freak great! So all the endpoints now on Open API are accessible already? Thanks mate!
- Copy Link
- Report Inappropriate Content
@Wifi-freak have you tried adding or extending the time for a certain client connected or voucher?
- Copy Link
- Report Inappropriate Content
@xkai
Hi, is this issue resolved already? I'm currently using the version v5.15.8.2 but I am having this issue in the postman return. I tried to copy the URL in creating voucher groups
from the network but it has a different return, it returns an HTML when applied to postman. any help regarding this issue?
- Copy Link
- Report Inappropriate Content
@Vincent-TP is the latest version ready for PRODUCTION already? Thank you!
- Copy Link
- Report Inappropriate Content
Hi, @xkai
what do you mean by PRODUCTION ?
xkai wrote
@Vincent-TP is the latest version ready for PRODUCTION already? Thank you!
- Copy Link
- Report Inappropriate Content
@Vincent-TP I mean can be used as main firmware already because based on the other thread the status is still "Pre-Release" "Omada SDN Controller_V5.15.20 Pre-Release Firmware"
And I did not see the latest version listed on this thread -> https://community.tp-link.com/en/business/forum/topic/245226
Thank you!
- Copy Link
- Report Inappropriate Content

- Copy Link
- Report Inappropriate Content
@Vincent-TP thank you and will wait for the final release of this version before installing this on a production server.
- Copy Link
- Report Inappropriate Content

Information
Helpful: 0
Views: 1820
Replies: 40
Voters 0
No one has voted for it yet.