Sample code for 30+ languages & platforms
Chilkat2-Python

WaTrend Create Instance

See more WaTrend Examples

Create a new WaTrend Instance ID.

Chilkat Chilkat2-Python Downloads

Chilkat2-Python
import sys
import chilkat2

success = False

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

http = chilkat2.Http()

# Use your actual access token instead of 555555555555555555555555555555
resp = chilkat2.HttpResponse()
success = http.HttpNoBody("GET","https://app.watrend.com/api/createinstance.php?access_token=555555555555555555555555555555",resp)
if (success == False):
    print(http.LastErrorText)
    sys.exit()

sbResponseBody = chilkat2.StringBuilder()
resp.GetBodySb(sbResponseBody)

respStatusCode = resp.StatusCode
print("Response Status Code = " + str(respStatusCode))
if (respStatusCode >= 400):
    print("Response Header:")
    print(resp.Header)
    print("Failed.")
    sys.exit()

# Both success and failed responses use 200 status code.

# A success response contains this JSON in the response body:
# {"status":"success","message":"Instance ID generated successfully","instance_id":"638EE5A76D3AA"}

# A failed response will contain something like this:
# {"status":"error","message":"Access token does not exist"}

print(resp.BodyStr)

jResp = chilkat2.JsonObject()
jResp.LoadSb(sbResponseBody)

status = jResp.StringOf("status")
instanceId = ""
if (jResp.HasMember("instance_id") == True):
    instanceId = jResp.StringOf("instance_id")

print("status: " + status)
print("instance_id: " + instanceId)