Node.js Stripe: Retrieve a Source

Back to Index

Retrieves an existing source object. Supply the unique source ID from a source creation request and Stripe will return the corresponding up-to-date source object information.

Documentation: https://stripe.com/docs/api/curl#retrieve_source

CURL Command

curl https://api.stripe.com/v1/sources/src_1BnETLGswQrCoh0X5KOorXEP \
   -u STRIPE_SECRET_KEY:

Node.js Example

var os = require('os');
if (os.platform() == 'win32') {  
    var chilkat = require('chilkat_node6_win32'); 
} else if (os.platform() == 'linux') {
    if (os.arch() == 'arm') {
        var chilkat = require('chilkat_node6_arm');
    } else if (os.arch() == 'x86') {
        var chilkat = require('chilkat_node6_linux32');
    } else {
        var chilkat = require('chilkat_node6_linux64');
    }
} else if (os.platform() == 'darwin') {
    var chilkat = require('chilkat_node6_macosx');
}

function chilkatExample() {

    var rest = new chilkat.Rest();
    var success;

    //  URL: https://api.stripe.com/v1/sources/src_1BnETLGswQrCoh0X5KOorXEP
    var bTls = true;
    var port = 443;
    var bAutoReconnect = true;
    success = rest.Connect("api.stripe.com",port,bTls,bAutoReconnect);
    if (success !== true) {
        console.log("ConnectFailReason: " + rest.ConnectFailReason);
        console.log(rest.LastErrorText);
        return;
    }

    rest.SetAuthBasic("STRIPE_SECRET_KEY","");

    var sbResponseBody = new chilkat.StringBuilder();
    success = rest.FullRequestNoBodySb("GET","/v1/sources/src_1BnETLGswQrCoh0X5KOorXEP",sbResponseBody);
    if (success !== true) {
        console.log(rest.LastErrorText);
        return;
    }

    var jsonResponse = new chilkat.JsonObject();
    jsonResponse.LoadSb(sbResponseBody);

    var id;
    var object;
    var amount;
    var client_secret;
    var created;
    var currency;
    var flow;
    var livemode;
    var ownerAddress;
    var ownerEmail;
    var ownerName;
    var ownerPhone;
    var ownerVerified_address;
    var ownerVerified_email;
    var ownerVerified_name;
    var ownerVerified_phone;
    var receiverAddress;
    var receiverAmount_charged;
    var receiverAmount_received;
    var receiverAmount_returned;
    var receiverRefund_attributes_method;
    var receiverRefund_attributes_status;
    var statement_descriptor;
    var status;
    var type;
    var usage;
    var bitcoinAddress;
    var bitcoinAmount;
    var bitcoinAmount_charged;
    var bitcoinAmount_received;
    var bitcoinAmount_returned;
    var bitcoinUri;

    id = jsonResponse.StringOf("id");
    object = jsonResponse.StringOf("object");
    amount = jsonResponse.IntOf("amount");
    client_secret = jsonResponse.StringOf("client_secret");
    created = jsonResponse.IntOf("created");
    currency = jsonResponse.StringOf("currency");
    flow = jsonResponse.StringOf("flow");
    livemode = jsonResponse.BoolOf("livemode");
    ownerAddress = jsonResponse.IsNullOf("owner.address");
    ownerEmail = jsonResponse.StringOf("owner.email");
    ownerName = jsonResponse.IsNullOf("owner.name");
    ownerPhone = jsonResponse.IsNullOf("owner.phone");
    ownerVerified_address = jsonResponse.IsNullOf("owner.verified_address");
    ownerVerified_email = jsonResponse.IsNullOf("owner.verified_email");
    ownerVerified_name = jsonResponse.IsNullOf("owner.verified_name");
    ownerVerified_phone = jsonResponse.IsNullOf("owner.verified_phone");
    receiverAddress = jsonResponse.StringOf("receiver.address");
    receiverAmount_charged = jsonResponse.IntOf("receiver.amount_charged");
    receiverAmount_received = jsonResponse.IntOf("receiver.amount_received");
    receiverAmount_returned = jsonResponse.IntOf("receiver.amount_returned");
    receiverRefund_attributes_method = jsonResponse.StringOf("receiver.refund_attributes_method");
    receiverRefund_attributes_status = jsonResponse.StringOf("receiver.refund_attributes_status");
    statement_descriptor = jsonResponse.IsNullOf("statement_descriptor");
    status = jsonResponse.StringOf("status");
    type = jsonResponse.StringOf("type");
    usage = jsonResponse.StringOf("usage");
    bitcoinAddress = jsonResponse.StringOf("bitcoin.address");
    bitcoinAmount = jsonResponse.IntOf("bitcoin.amount");
    bitcoinAmount_charged = jsonResponse.IntOf("bitcoin.amount_charged");
    bitcoinAmount_received = jsonResponse.IntOf("bitcoin.amount_received");
    bitcoinAmount_returned = jsonResponse.IntOf("bitcoin.amount_returned");
    bitcoinUri = jsonResponse.StringOf("bitcoin.uri");

}

chilkatExample();

Sample JSON Response Body

{
  "id": "src_1BnETLGswQrCoh0X5KOorXEP",
  "object": "source",
  "amount": 1000,
  "client_secret": "src_client_secret_CBbgdvc1AflN5jN0wQevA2jA",
  "created": 1516662783,
  "currency": "usd",
  "flow": "receiver",
  "livemode": false,
  "metadata": {},
  "owner": {
    "address": null,
    "email": "jenny.rosen@example.com",
    "name": null,
    "phone": null,
    "verified_address": null,
    "verified_email": null,
    "verified_name": null,
    "verified_phone": null
  },
  "receiver": {
    "address": "test_1MBhWS3uv4ynCfQXF3xQjJkzFPukr4K56N",
    "amount_charged": 0,
    "amount_received": 0,
    "amount_returned": 0,
    "refund_attributes_method": "email",
    "refund_attributes_status": "missing"
  },
  "statement_descriptor": null,
  "status": "pending",
  "type": "bitcoin",
  "usage": "single_use",
  "bitcoin": {
    "address": "test_1MBhWS3uv4ynCfQXF3xQjJkzFPukr4K56N",
    "amount": 2371000,
    "amount_charged": 0,
    "amount_received": 0,
    "amount_returned": 0,
    "uri": "bitcoin:test_1MBhWS3uv4ynCfQXF3xQjJkzFPukr4K56N?amount=0.02371000"
  }
}