Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_QueryParams
oleobject loo_Resp
// 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
loo_QueryParams = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_QueryParams.ConnectToNewObject("Chilkat.JsonObject")
loo_QueryParams.UpdateString("q","Select ID, Name, ProductSellingModel.Name from pricebookentry where Product2.Name IN ('Virtual Router') order by ProductSellingModel.Name ASC")
// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"
loo_Resp = loo_Http.QuickRequestParams("GET","https://domain.com/services/data/v{{version}}/query",loo_QueryParams)
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_QueryParams
return
end if
Write-Debug string(loo_Resp.StatusCode)
Write-Debug loo_Resp.BodyStr
destroy loo_Resp
destroy loo_Http
destroy loo_QueryParams
Curl Command
curl -G -d "q=Select%20ID,%20Name,%20ProductSellingModel.Name%20from%20pricebookentry%20where%20Product2.Name%20IN%20%28%27Virtual%20Router%27%29%20order%20by%20ProductSellingModel.Name%20ASC"
-H "Authorization: Bearer <access_token>"
https://domain.com/services/data/v{{version}}/query
Postman Collection Item JSON
{
"name": "GetPBEs(VirtualRouter)",
"event": [
{
"listen": "test",
"script": {
"exec": [
"const context = pm.environment.name ? pm.environment : pm.collectionVariables;",
"const jsonData = JSON.parse(responseBody);",
"",
"context.set(\"VirtualRouterEvergrnPBE\", jsonData.records[0].Id);",
"context.set(\"VirtualRouterTermedPBE\", jsonData.records[1].Id);",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/query?q=Select ID, Name, ProductSellingModel.Name from pricebookentry where Product2.Name IN ('Virtual Router') order by ProductSellingModel.Name ASC",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"query"
],
"query": [
{
"key": "q",
"value": "Select ID, Name, ProductSellingModel.Name from pricebookentry where Product2.Name IN ('Virtual Router') order by ProductSellingModel.Name ASC"
}
]
}
},
"response": [
]
}