PowerBuilder / Creatio API / Modify object collection instance
Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Json
oleobject loo_SbRequestBody
oleobject loo_Resp
integer li_RespStatusCode
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "{{FieldName5}}": "{{FieldName5Value2}}"
// }
loo_Json = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")
loo_Json.UpdateString("{{FieldName5}}","{{FieldName5Value2}}")
loo_Http.SetRequestHeader("Content-Type","application/json; odata=verbose")
loo_Http.SetRequestHeader("ForceUseSession","true")
loo_Http.SetRequestHeader("BPMCSRF","{{BPMCSRF}}")
loo_Http.SetRequestHeader("Accept","application/json; odata=verbose")
loo_SbRequestBody = create oleobject
// Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
li_rc = loo_SbRequestBody.ConnectToNewObject("Chilkat.StringBuilder")
loo_Json.EmitSb(loo_SbRequestBody)
loo_Resp = loo_Http.PTextSb("PATCH","https://myserver.com/0/ServiceModel/EntityDataService.svc/Collection3Collection(guid'Id')",loo_SbRequestBody,"utf-8","application/json; odata=verbose",0,0)
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_Json
destroy loo_SbRequestBody
return
end if
li_RespStatusCode = loo_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode <> 204 then
Write-Debug "Response Header:"
Write-Debug loo_Resp.Header
Write-Debug "Response Body:"
Write-Debug loo_Resp.BodyStr
Write-Debug "Failed."
destroy loo_Resp
destroy loo_Http
destroy loo_Json
destroy loo_SbRequestBody
return
end if
destroy loo_Resp
Write-Debug "Success."
destroy loo_Http
destroy loo_Json
destroy loo_SbRequestBody
Curl Command
curl -X PATCH
-H "Accept: application/json; odata=verbose"
-H "Content-Type: application/json; odata=verbose"
-H "ForceUseSession: true"
-H "BPMCSRF: {{BPMCSRF}}"
-d '{
"{{FieldName5}}": "{{FieldName5Value2}}"
}'
https://myserver.com/0/ServiceModel/EntityDataService.svc/Collection3Collection(guid'Id')
Postman Collection Item JSON
{
"name": "Modify object collection instance",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
},
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "PATCH",
"header": [
{
"key": "Accept",
"value": "application/json; odata=verbose",
"type": "text"
},
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json; odata=verbose",
"type": "text"
},
{
"key": "ForceUseSession",
"value": "true",
"type": "text"
},
{
"key": "BPMCSRF",
"value": "{{BPMCSRF}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"{{FieldName5}}\": \"{{FieldName5Value2}}\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{BaseURI}}/0/ServiceModel/EntityDataService.svc/{{CollectionName3}}Collection(guid'{{ObjectId3}}')",
"host": [
"{{BaseURI}}"
],
"path": [
"0",
"ServiceModel",
"EntityDataService.svc",
"{{CollectionName3}}Collection(guid'{{ObjectId3}}')"
]
},
"description": "Request for modifying an object collection instance."
},
"response": [
{
"name": "[204] Modifies an object collection instance",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Accept",
"value": "application/json; odata=verbose",
"type": "text"
},
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json; odata=verbose",
"type": "text"
},
{
"key": "ForceUseSession",
"value": "true",
"type": "text"
},
{
"key": "BPMCSRF",
"value": "{{BPMCSRF}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"JobTitle\": \"Head of department\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "https://myserver.com/0/ServiceModel/EntityDataService.svc/ContactCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')",
"protocol": "https",
"host": [
"myserver",
"com"
],
"path": [
"0",
"ServiceModel",
"EntityDataService.svc",
"ContactCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')"
]
}
},
"status": "No Content",
"code": 204,
"_postman_previewlanguage": "xml",
"header": [
{
"key": "Cache-Control",
"value": "private"
},
{
"key": "Content-Type",
"value": "text/html; charset=utf-8"
},
{
"key": "Server",
"value": "Microsoft-IIS/10.0"
},
{
"key": "X-Powered-By",
"value": "ASP.NET"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "Date",
"value": "Thu, 09 Apr 2020 11:32:54 GMT"
},
{
"key": "Content-Length",
"value": "5012"
}
],
"cookie": [
],
"body": ""
}
]
}