Back to Collection Items
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"
IncludeFile "CkXml.pb"
Procedure ChilkatExample()
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
http.i = CkHttp::ckCreate()
If http.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
success.i
; Use this online tool to generate code from sample XML: Generate Code to Create XML
; The following XML is sent in the request body.
; <?xml version="1.0" encoding="utf-8"?>
; <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:enterprise.soap.sforce.com">
; <soapenv:Header>
; <urn:SessionHeader>
; <urn:sessionId>{{_accessToken}}</urn:sessionId>
; </urn:SessionHeader>
; </soapenv:Header>
; <soapenv:Body>
; <urn:undelete>
; <urn:ids/>
; </urn:undelete>
; </soapenv:Body>
; </soapenv:Envelope>
;
xml.i = CkXml::ckCreate()
If xml.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
CkXml::setCkTag(xml, "soapenv:Envelope")
CkXml::ckAddAttribute(xml,"xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/")
CkXml::ckAddAttribute(xml,"xmlns:urn","urn:enterprise.soap.sforce.com")
CkXml::ckUpdateChildContent(xml,"soapenv:Header|urn:SessionHeader|urn:sessionId","{{_accessToken}}")
CkXml::ckUpdateChildContent(xml,"soapenv:Body|urn:undelete|urn:ids","")
CkHttp::ckSetRequestHeader(http,"Content-Type","text/xml; charset=UTF-8")
; Adds the "Authorization: Bearer <access_token>" header.
CkHttp::setCkAuthToken(http, "<access_token>")
CkHttp::ckSetRequestHeader(http,"SOAPAction","undelete")
CkHttp::ckSetRequestHeader(http,"Accept","text/xml")
sbRequestBody.i = CkStringBuilder::ckCreate()
If sbRequestBody.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
CkXml::ckGetXmlSb(xml,sbRequestBody)
resp.i = CkHttpResponse::ckCreate()
If resp.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
success = CkHttp::ckHttpSb(http,"POST","https://login.salesforce.com{{site}}/services/Soap/c/{{version}}",sbRequestBody,"utf-8","text/xml; charset=UTF-8",resp)
If success = 0
Debug CkHttp::ckLastErrorText(http)
CkHttp::ckDispose(http)
CkXml::ckDispose(xml)
CkStringBuilder::ckDispose(sbRequestBody)
CkHttpResponse::ckDispose(resp)
ProcedureReturn
EndIf
Debug Str(CkHttpResponse::ckStatusCode(resp))
Debug CkHttpResponse::ckBodyStr(resp)
CkHttp::ckDispose(http)
CkXml::ckDispose(xml)
CkStringBuilder::ckDispose(sbRequestBody)
CkHttpResponse::ckDispose(resp)
ProcedureReturn
EndProcedure
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-H "Content-Type: text/xml; charset=UTF-8"
-H "Accept: text/xml"
-H "SOAPAction: undelete"
-d '<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:enterprise.soap.sforce.com">
<soapenv:Header>
<urn:SessionHeader>
<urn:sessionId>{{_accessToken}}</urn:sessionId>
</urn:SessionHeader>
</soapenv:Header>
<soapenv:Body>
<urn:undelete>
<urn:ids></urn:ids>
</urn:undelete>
</soapenv:Body>
</soapenv:Envelope>'
https://login.salesforce.com{{site}}/services/Soap/c/{{version}}
Postman Collection Item JSON
{
"name": "SOAP undelete",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "text/xml; charset=UTF-8",
"type": "text"
},
{
"key": "Accept",
"value": "text/xml",
"type": "text"
},
{
"key": "SOAPAction",
"value": "undelete",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:urn=\"urn:enterprise.soap.sforce.com\">\n <soapenv:Header>\n <urn:SessionHeader>\n <urn:sessionId>{{_accessToken}}</urn:sessionId>\n </urn:SessionHeader>\n </soapenv:Header>\n <soapenv:Body>\n <urn:undelete>\n <urn:ids></urn:ids>\n </urn:undelete>\n </soapenv:Body>\n</soapenv:Envelope>",
"options": {
"raw": {
"language": "xml"
}
}
},
"url": {
"raw": "{{url}}{{site}}/services/Soap/c/{{version}}",
"host": [
"{{url}}{{site}}"
],
"path": [
"services",
"Soap",
"c",
"{{version}}"
]
},
"description": "Undeletes records from the Recycle Bin."
},
"response": [
]
}