Back to Collection Items
Add-Type -Path "C:\chilkat\ChilkatDotNet47-x64\ChilkatDotNet47.dll"
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
$http = New-Object Chilkat.Http
# Use this online tool to generate code from sample JSON: Generate Code to Create JSON
# The following JSON is sent in the request body.
# {
# "data": [
# {
# "Campaign_Name": "sample",
# "Type": "Conference"
# }
# ]
# }
$json = New-Object Chilkat.JsonObject
$json.UpdateString("data[0].Campaign_Name","sample")
$json.UpdateString("data[0].Type","Conference")
# Adds the "Authorization: Bearer <access_token>" header.
$http.AuthToken = "<access_token>"
$sbRequestBody = New-Object Chilkat.StringBuilder
$json.EmitSb($sbRequestBody)
$resp = $http.PTextSb("PUT","https://domain.com/crm/v2.1/Campaigns/{{record_id}}",$sbRequestBody,"utf-8","application/json",$false,$false)
if ($http.LastMethodSuccess -eq $false) {
$($http.LastErrorText)
exit
}
$($resp.StatusCode)
$($resp.BodyStr)
Curl Command
curl -X PUT
-H "Authorization: Bearer <access_token>"
-d '{
"data": [
{
"Campaign_Name": "sample",
"Type": "Conference"
}
]
}'
https://domain.com/crm/v2.1/Campaigns/{{record_id}}
Postman Collection Item JSON
{
"name": "Campaigns",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"method": "PUT",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"data\": [\n {\n \"Campaign_Name\": \"sample\",\n \"Type\": \"Conference\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{api-domain}}/crm/v2.1/Campaigns/{{record_id}}",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"Campaigns",
"{{record_id}}"
]
},
"description": "To update campaigns."
},
"response": [
]
}