Chilkat Online Tools

Ruby / Salesforce Platform APIs / Games

Back to Collection Items

require 'chilkat'

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

http = Chilkat::CkHttp.new()

# Adds the "Authorization: Bearer <access_token>" header.
http.put_AuthToken("<access_token>")

sbResponseBody = Chilkat::CkStringBuilder.new()
success = http.QuickGetSb("https://domain.com/services/data/v{{version}}/game/participant/:participantId/games",sbResponseBody)
if (success == false)
    print http.lastErrorText() + "\n";
    exit
end

print "Response status code = " + http.get_LastStatus().to_s() + "\n";
print sbResponseBody.getAsString() + "\n";

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": [
  ]
}