Chilkat Online Tools

Java / CardPointe API Integration / Tokenize (Card Number)

Back to Collection Items

import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp http = new CkHttp();
    boolean success;

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

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

    // {
    //   "account": "4444333322221111"
    // }

    CkJsonObject json = new CkJsonObject();
    json.UpdateString("account","4444333322221111");

    http.SetRequestHeader("Content-Type","application/json");

    CkHttpResponse resp = http.PostJson3("https://domain.com/","application/json",json);
    if (http.get_LastMethodSuccess() == false) {
        System.out.println(http.lastErrorText());
        return;
        }

    System.out.println(resp.get_StatusCode());
    System.out.println(resp.bodyStr());
  }
}

Curl Command

curl -X POST
	-H "Content-Type: application/json"
	-d '{
  "account" : "4444333322221111"
}'
https://domain.com/

Postman Collection Item JSON

{
  "name": "Tokenize (Card Number)",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "var jsonData = JSON.parse(responseBody);",
          "postman.setEnvironmentVariable(\"token\", jsonData.token);"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "value": "application/json",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"account\" : \"4444333322221111\"\n}"
    },
    "url": {
      "raw": "{{csurl}}",
      "host": [
        "{{csurl}}"
      ]
    },
    "description": "CardSecure API v1 Documentation Coming Soon\n\n**Note:** This is not required, but shows a simple call to the CardSecure API to tokenize a credit card number. It can be used to setup the token variable used in this Postman environment."
  },
  "response": [
  ]
}