lianja / WAC API / Account Name
Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loHttp = createobject("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.
// {
// "AcctName": "updated_email@company.com"
// }
loJson = createobject("CkJsonObject")
loJson.UpdateString("AcctName","updated_email@company.com")
loHttp.SetRequestHeader("Authorization","{{WACApiKey}}")
loResp = loHttp.PostJson3("https://domain.com/v1/accounts/12345","application/json",loJson)
if (loHttp.LastMethodSuccess = .F.) then
? loHttp.LastErrorText
release loHttp
release loJson
return
endif
? str(loResp.StatusCode)
? loResp.BodyStr
release loResp
release loHttp
release loJson
Curl Command
curl -X POST
-H "Authorization: {{WACApiKey}}"
-d '{
"AcctName": "updated_email@company.com"
}'
https://domain.com/v1/accounts/12345
Postman Collection Item JSON
{
"name": "Account Name",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "{{WACApiKey}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"AcctName\": \"updated_email@company.com\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseURL}}/v1/accounts/12345",
"host": [
"{{baseURL}}"
],
"path": [
"v1",
"accounts",
"12345"
]
}
},
"response": [
]
}