Chilkat Online Tools

Swift / Salesforce Platform APIs / Get Default Account

Back to Collection Items

func chilkatTest() {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    let http = CkoHttp()
    var success: Bool

    let queryParams = CkoJsonObject()
    queryParams.UpdateString("q", value: "Select Id, Name from Account Where name='SmartBytes'")

    // Adds the "Authorization: Bearer <access_token>" header.
    http.AuthToken = "<access_token>"

    var resp: CkoHttpResponse? = http.QuickRequestParams("GET", url: "https://domain.com/services/data/v{{version}}/query", json: queryParams)
    if http.LastMethodSuccess == false {
        print("\(http.LastErrorText)")
        return
    }

    print("\(resp!.StatusCode.intValue)")
    print("\(resp!.BodyStr)")
    resp = nil

}

Curl Command

curl -G -d "q=Select%20Id,%20Name%20from%20Account%20Where%20name%3D%27SmartBytes%27"
	-H "Authorization: Bearer <access_token>"
https://domain.com/services/data/v{{version}}/query

Postman Collection Item JSON

{
  "name": "Get Default Account",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "const context = pm.environment.name ? pm.environment : pm.collectionVariables;",
          "const jsonData = JSON.parse(responseBody);",
          "",
          "context.set(\"defaultAccount\", jsonData.records[0].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 from Account Where name='SmartBytes'",
      "host": [
        "{{_endpoint}}"
      ],
      "path": [
        "services",
        "data",
        "v{{version}}",
        "query"
      ],
      "query": [
        {
          "key": "q",
          "value": "Select Id, Name from Account Where name='SmartBytes'"
        }
      ]
    }
  },
  "response": [
  ]
}