Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loHttp = createobject("CkHttp")
// Adds the "Authorization: Bearer <access_token>" header.
loHttp.AuthToken = "<access_token>"
loSbResponseBody = createobject("CkStringBuilder")
llSuccess = loHttp.QuickGetSb("https://domain.com/services/data/v{{version}}/game/participant/:participantId/games",loSbResponseBody)
if (llSuccess = .F.) then
? loHttp.LastErrorText
release loHttp
release loSbResponseBody
return
endif
? "Response status code = " + str(loHttp.LastStatus)
? loSbResponseBody.GetAsString()
release loHttp
release loSbResponseBody
Curl Command
curl -X GET
-H "Authorization: Bearer <access_token>"
https://domain.com/services/data/v{{version}}/game/participant/:participantId/games
Postman Collection Item JSON
{
"name": "Games",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
"pm.variables.set('participantId','12345');",
""
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/game/participant/:participantId/games",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"game",
"participant",
":participantId",
"games"
],
"query": [
{
"key": "definitionId",
"value": "",
"description": "ID of the game definition associated with the game whose details are to be fetched.",
"disabled": true
},
{
"key": "gameParticipantRewardId",
"value": "",
"description": "ID of the participant's game reward associated with the game whose details are to be fetched.",
"disabled": true
}
],
"variable": [
{
"key": "participantId",
"value": ""
}
]
},
"description": "[Games](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_gamification.htm)\n\nNOTE:\n\nIn the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke."
},
"response": [
]
}