API to suspend an account or website on Cyberpanel

Friends, I’m developing the WHMCS module, but I can’t find the endpoint that suspends the account or the website. Does anyone know how I can access all API controllers created?
It doesn’t have it in Postman.

Thank you, I already solved it and I will share the knowledge here.
I discovered that all the endpoints are in this file: github.com/usmannasir/cyberpanel/blob/stable/cloudAPI/views.py

I also discovered that all end-points are used within the CyberPanel. Just enter the cyber panel and inspect it, and look at the NETWORK tab, there you will see the magic. This means that everything can be reflected within WHMCS, all functions!

Below we have POSTMAN which helps, but it only has the basics:
documenter.getpostman.com/view/2s8Yt1s9Pf?version=latest&_gl=1*1te290m*_ga*MTcxNTgyODQ1MS4xNzA5ODE3MTU1*_ga_W8T96EDFYG*MTcxMzM5MTE0NS45LjEuMTcxMzM5MTc4Mi4xOC4wLjA.#intro

In this case my code would look like this:

$curl = curl_init();

curl_setopt_array($curl, array(
   CURLOPT_URL => 'https://website.net.br:8090/cloudAPI/',
   CURLOPT_RETURNTRANSFER => true,
   CURLOPT_ENCODING => '',
   CURLOPT_MAXREDIRS => 10,
   CURLOPT_TIMEOUT => 0,
   CURLOPT_FOLLOWLOCATION => true,
   CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
   CURLOPT_CUSTOMREQUEST => 'POST',
   CURLOPT_POSTFIELDS =>'{
"serverUserName": "admin",
"controller": "submitWebsiteStatus",
     "websiteName": "xxxxticket.com.br",
     "state": "Suspend"
}',
   CURLOPT_HTTPHEADER => array(
     'Authorization: Basic 9edce78750debaa5479dc18e5ff9589eksdbvksbvkbvkbsfbd9c4d3744176',
     'Content-Type: application/json',
     'Cookie: sessionid=g5gliu3ni2dfgdfvdfgdffgpgbn418'
   ),
));

Of course, this data is fictitious, you need to create your own
to remove the suspension change it to: “state”: “Un-Suspend”