Chilkat Online Tools

Swift / WAC API / Trial-To-Paid

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

    // Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {
    //   "ConvertToPaid": true
    // }

    let json = CkoJsonObject()
    json.UpdateBool("ConvertToPaid", value: true)

    http.SetRequestHeader("Authorization", value: "{{WACApiKey}}")

    var resp: CkoHttpResponse? = http.PostJson3("https://domain.com/v1/accounts/:AcctNum", contentType: "application/json", json: json)
    if http.LastMethodSuccess == false {
        print("\(http.LastErrorText)")
        return
    }

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

}

Curl Command

curl -X POST
	-H "Authorization: {{WACApiKey}}"
	-d '{
    "ConvertToPaid": true
}'
https://domain.com/v1/accounts/:AcctNum

Postman Collection Item JSON

{
  "name": "Trial-To-Paid",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Authorization",
        "value": "{{WACApiKey}}",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n    \"ConvertToPaid\": true\r\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseURL}}/v1/accounts/:AcctNum",
      "host": [
        "{{baseURL}}"
      ],
      "path": [
        "v1",
        "accounts",
        ":AcctNum"
      ],
      "variable": [
        {
          "key": "AcctNum",
          "value": ""
        }
      ]
    }
  },
  "response": [
  ]
}