phpExt / WAC API / Trial-To-Paid
Back to Collection Items
<?php
include("chilkat.php");
// Use "chilkat_9_5_0.php" for versions of Chilkat < 10.0.0
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
$http = new 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.
// {
// "ConvertToPaid": true
// }
$json = new CkJsonObject();
$json->UpdateBool('ConvertToPaid',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() . "\n";
exit;
}
print $resp->get_StatusCode() . "\n";
print $resp->bodyStr() . "\n";
?>
Curl Command
curl -X POST
-H "Authorization: {{WACApiKey}}"
-d '{
"ConvertToPaid": true
}'
https://domain.com/v1/accounts/:AcctNum
Postman Collection Item JSON
{
"name": "Trial-To-Paid",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "{{WACApiKey}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"ConvertToPaid\": true\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseURL}}/v1/accounts/:AcctNum",
"host": [
"{{baseURL}}"
],
"path": [
"v1",
"accounts",
":AcctNum"
],
"variable": [
{
"key": "AcctNum",
"value": ""
}
]
}
},
"response": [
]
}