Chilkat Online Tools

Android / Bond APIs / activate physical card

Back to Collection Items

// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

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

    CkHttp http = new CkHttp();
    boolean success;

    http.SetRequestHeader("Content-Type","application/json");
    http.SetRequestHeader("Authorization","{{authorization}}");
    http.SetRequestHeader("Identity","{{identity}}");

    CkHttpResponse resp = http.QuickRequest("PATCH","https://{{environment}}.bond.tech/api/v0/cards/:card_id/activate_physical_card");
    if (http.get_LastMethodSuccess() == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    Log.i(TAG, String.valueOf(resp.get_StatusCode()));
    Log.i(TAG, resp.bodyStr());


  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}

Curl Command

curl -X PATCH
	-H "Content-Type: application/json"
	-H "Authorization: {{authorization}}"
	-H "Identity: {{identity}}"
https://{{environment}}.bond.tech/api/v0/cards/:card_id/activate_physical_card

Postman Collection Item JSON

{
  "name": "activate physical card",
  "request": {
    "method": "PATCH",
    "header": [
      {
        "key": "Content-Type",
        "type": "text",
        "value": "application/json",
        "disabled": true
      },
      {
        "key": "Authorization",
        "type": "text",
        "value": "{{authorization}}"
      },
      {
        "key": "Identity",
        "type": "text",
        "value": "{{identity}}"
      },
      {
        "key": "",
        "value": "",
        "type": "text",
        "disabled": true
      }
    ],
    "url": {
      "raw": "https://{{environment}}.bond.tech/api/v0/cards/:card_id/activate_physical_card",
      "protocol": "https",
      "host": [
        "{{environment}}",
        "bond",
        "tech"
      ],
      "path": [
        "api",
        "v0",
        "cards",
        ":card_id",
        "activate_physical_card"
      ],
      "variable": [
        {
          "key": "card_id",
          "value": "{{card_id}}"
        }
      ]
    },
    "description": "Add Card financial Core"
  },
  "response": [
    {
      "name": "activate physical card",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "type": "text",
            "value": "application/json",
            "disabled": true
          },
          {
            "key": "Authorization",
            "type": "text",
            "value": "{{authorization}}"
          },
          {
            "key": "Identity",
            "type": "text",
            "value": "{{identity}}"
          },
          {
            "key": "",
            "value": "",
            "type": "text",
            "disabled": true
          }
        ],
        "url": {
          "raw": "https://{{environment}}.bond.tech/api/v0/cards/:card_id/activate_physical_card",
          "protocol": "https",
          "host": [
            "{{environment}}",
            "bond",
            "tech"
          ],
          "path": [
            "api",
            "v0",
            "cards",
            ":card_id",
            "activate_physical_card"
          ],
          "variable": [
            {
              "key": "card_id",
              "value": null
            }
          ]
        }
      },
      "_postman_previewlanguage": "json",
      "header": null,
      "cookie": [
      ],
      "body": "{\n\"card_id\":\"2742ff6a-7455-4066-8b45-ae12d3acca34\",\n\"last_four\":\"6169\",\n\"status\":\"Active\"\n}"
    }
  ]
}