Get all webviewtemplates

from smart_prospective_api import SPApi, APIError

PUBLIC_KEY = "pub_XXXXX"
PRIVATE_KEY = "sec_XXXXX"


try:
    # Setup the API credencial (do not perform any request at this moment)
    # Note: The public key starts by "pub_" & The secret key starts by "sec_"
    sp_api = SPApi(PUBLIC_KEY, PRIVATE_KEY)

    # GET
    webviewtemplates = sp_api.get_webviewtemplates()  # Get all the webviewtemplates linked to you
    print(f"Current webviewtemplates: {webviewtemplates} (total: {len(webviewtemplates)} webviewtemplate(s))")
    
    sp_api.logout()  # Logout the account, more safe to use it, to avoid potential attacks
except APIError as e:
    print(f"Failure using the Smart Prospective API: {e}")
curl --location --request POST 'https://app.smartprospective.com/api/webviewtemplates' \
--form 'token="XXXXXX"'