|
|
|
|
|
SaaSAdminDeleteSite (Function) In french: SaaSAdminSupprimeSite Deletes a SaaS site. Remarks: - To use this function, a SaaS management session must have been started previously with SaaSAdminConnect.
- The use of this function is reserved to the SaaS administrator. A manager of client accounts cannot use this function.
// Delete the "Forum" SaaS site S is saasSite S = SaaSAdminFindSite("Forum") Â IF SaaSAdminDeleteSite(S) = True THEN Info("Site successfully deleted.") END
Syntax
Deleting a SaaS site (via a saasSite variable) Hide the details
<Result> = SaaSAdminDeleteSite(<SaaSÂ site>)
<Result>: Boolean - True if the deletion was performed,
- False otherwise. To get more details on the error, use ErrorInfo.
<SaaS site>: saasSite variable Name of the saasSite variable corresponding to the SaaS site to be removed from the SaaS database.
Deleting a SaaS site identified by its name Hide the details
<Result> = SaaSAdminDeleteSite(<SaaSÂ site>)
<Result>: Boolean - True if the deletion was performed,
- False otherwise. To get more details on the error, use ErrorInfo.
<SaaS site>: Character string Name of the SaaS site to be removed from the SaaS database.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|