Back to Collection Items
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
$oHttp = ObjCreate("Chilkat.Http")
Local $bSuccess
; Adds the "Authorization: Bearer <access_token>" header.
$oHttp.AuthToken = "<access_token>"
$oSbResponseBody = ObjCreate("Chilkat.StringBuilder")
$bSuccess = $oHttp.QuickGetSb("https://domain.com/services/data/v{{version}}/connect/loyalty/member/:memberId/memberbenefits",$oSbResponseBody)
If ($bSuccess = False) Then
ConsoleWrite($oHttp.LastErrorText & @CRLF)
Exit
EndIf
$oJResp = ObjCreate("Chilkat.JsonObject")
$oJResp.LoadSb($oSbResponseBody)
$oJResp.EmitCompact = False
ConsoleWrite("Response Body:" & @CRLF)
ConsoleWrite($oJResp.Emit() & @CRLF)
Local $iRespStatusCode = $oHttp.LastStatus
ConsoleWrite("Response Status Code = " & $iRespStatusCode & @CRLF)
If ($iRespStatusCode >= 400) Then
ConsoleWrite("Response Header:" & @CRLF)
ConsoleWrite($oHttp.LastHeader & @CRLF)
ConsoleWrite("Failed." & @CRLF)
Exit
EndIf
; Sample JSON response:
; (Sample code for parsing the JSON response is shown below)
; {
; "memberBenefits": [
; {
; "benefitId": "0jiJ80000008OIFIA2",
; "benefitName": "Free Shipping",
; "benefitTypeId": "0jhJ80000008OI5IAM",
; "benefitTypeName": "Shipping",
; "createdRecordId": null,
; "createdRecordName": null,
; "description": null,
; "endDate": null,
; "isActive": true,
; "memberBenefitStatus": null,
; "startDate": null
; },
; {
; "benefitId": "0jiJ80000008OI5IAM",
; "benefitName": "5% of Discount",
; "benefitTypeId": "0jhJ80000008OIAIA2",
; "benefitTypeName": "Discount Percentage",
; "createdRecordId": null,
; "createdRecordName": null,
; "description": null,
; "endDate": null,
; "isActive": true,
; "memberBenefitStatus": null,
; "startDate": null
; }
; ]
; }
; Sample code for parsing the JSON response...
; Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
Local $sBenefitId
Local $sBenefitName
Local $sBenefitTypeId
Local $sBenefitTypeName
Local $sCreatedRecordId
Local $sCreatedRecordName
Local $sDescription
Local $sEndDate
Local $bIsActive
Local $sMemberBenefitStatus
Local $startDate
Local $i = 0
Local $iCount_i = $oJResp.SizeOfArray("memberBenefits")
While $i < $iCount_i
$oJResp.I = $i
$sBenefitId = $oJResp.StringOf("memberBenefits[i].benefitId")
$sBenefitName = $oJResp.StringOf("memberBenefits[i].benefitName")
$sBenefitTypeId = $oJResp.StringOf("memberBenefits[i].benefitTypeId")
$sBenefitTypeName = $oJResp.StringOf("memberBenefits[i].benefitTypeName")
$sCreatedRecordId = $oJResp.StringOf("memberBenefits[i].createdRecordId")
$sCreatedRecordName = $oJResp.StringOf("memberBenefits[i].createdRecordName")
$sDescription = $oJResp.StringOf("memberBenefits[i].description")
$sEndDate = $oJResp.StringOf("memberBenefits[i].endDate")
$bIsActive = $oJResp.BoolOf("memberBenefits[i].isActive")
$sMemberBenefitStatus = $oJResp.StringOf("memberBenefits[i].memberBenefitStatus")
$startDate = $oJResp.StringOf("memberBenefits[i].startDate")
$i = $i + 1
Wend
Curl Command
curl -X GET
-H "Authorization: Bearer <access_token>"
https://domain.com/services/data/v{{version}}/connect/loyalty/member/:memberId/memberbenefits
Postman Collection Item JSON
{
"name": "Member Benefits",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/member/:memberId/memberbenefits",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"connect",
"loyalty",
"member",
":memberId",
"memberbenefits"
],
"variable": [
{
"key": "memberId",
"value": ""
}
]
},
"description": "Standard Documentation:\n\n[https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_member_benefits.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_member_benefits.htm)"
},
"response": [
{
"name": "Member Benefits",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{accessToken}}"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/member/:memberId/memberbenefits",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"connect",
"loyalty",
"member",
":memberId",
"memberbenefits"
],
"variable": [
{
"key": "memberId",
"value": "0lMJ8000000CaRMMA0"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Date",
"value": "Wed, 22 May 2024 16:11:06 GMT"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=63072000; includeSubDomains"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-Robots-Tag",
"value": "none"
},
{
"key": "Cache-Control",
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
},
{
"key": "Content-Type",
"value": "application/json;charset=UTF-8"
},
{
"key": "Vary",
"value": "Accept-Encoding"
},
{
"key": "Content-Encoding",
"value": "gzip"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
}
],
"cookie": [
],
"body": "{\n \"memberBenefits\": [\n {\n \"benefitId\": \"0jiJ80000008OIFIA2\",\n \"benefitName\": \"Free Shipping\",\n \"benefitTypeId\": \"0jhJ80000008OI5IAM\",\n \"benefitTypeName\": \"Shipping\",\n \"createdRecordId\": null,\n \"createdRecordName\": null,\n \"description\": null,\n \"endDate\": null,\n \"isActive\": true,\n \"memberBenefitStatus\": null,\n \"startDate\": null\n },\n {\n \"benefitId\": \"0jiJ80000008OI5IAM\",\n \"benefitName\": \"5% of Discount\",\n \"benefitTypeId\": \"0jhJ80000008OIAIA2\",\n \"benefitTypeName\": \"Discount Percentage\",\n \"createdRecordId\": null,\n \"createdRecordName\": null,\n \"description\": null,\n \"endDate\": null,\n \"isActive\": true,\n \"memberBenefitStatus\": null,\n \"startDate\": null\n }\n ]\n}"
}
]
}