VB.NET / WAC API / Update Number Trial Days
Back to Collection Items
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As New Chilkat.Http
Dim success As Boolean
' Use this online tool to generate code from sample JSON: Generate Code to Create JSON
' The following JSON is sent in the request body.
' {
' "NumTrialDays": 30
' }
Dim json As New Chilkat.JsonObject
json.UpdateInt("NumTrialDays",30)
http.SetRequestHeader("Authorization","{{WACApiKey}}")
Dim resp As Chilkat.HttpResponse = http.PostJson3("https://domain.com/v1/accounts/:AcctNum","application/json",json)
If (http.LastMethodSuccess = False) Then
Debug.WriteLine(http.LastErrorText)
Exit Sub
End If
Debug.WriteLine(resp.StatusCode)
Debug.WriteLine(resp.BodyStr)
Curl Command
curl -X POST
-H "Authorization: {{WACApiKey}}"
-d '{
"NumTrialDays": 30
}'
https://domain.com/v1/accounts/:AcctNum
Postman Collection Item JSON
{
"name": "Update Number Trial Days",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "{{WACApiKey}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"NumTrialDays\": 30\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": [
]
}