Python / WAC API / Set Account Inactive
Back to Collection Items
import sys
import chilkat
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
http = chilkat.CkHttp()
# Use this online tool to generate code from sample JSON: Generate Code to Create JSON
# The following JSON is sent in the request body.
# {
# "Inactive": true
# }
json = chilkat.CkJsonObject()
json.UpdateBool("Inactive",True)
http.SetRequestHeader("Authorization","{{WACApiKey}}")
# resp is a CkHttpResponse
resp = http.PostJson3("https://domain.com/v1/accounts/:AcctNum","application/json",json)
if (http.get_LastMethodSuccess() == False):
print(http.lastErrorText())
sys.exit()
print(str(resp.get_StatusCode()))
print(resp.bodyStr())
Curl Command
curl -X POST
-H "Authorization: {{WACApiKey}}"
-d '{
"Inactive": true
}'
https://domain.com/v1/accounts/:AcctNum
Postman Collection Item JSON
{
"name": "Set Account Inactive",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "{{WACApiKey}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"Inactive\": true\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseURL}}/v1/accounts/:AcctNum",
"host": [
"{{baseURL}}"
],
"path": [
"v1",
"accounts",
":AcctNum"
],
"variable": [
{
"key": "AcctNum",
"value": "",
"description": "Account Number"
}
]
}
},
"response": [
]
}