PHP Extension Stripe: List all File Uploads

Back to Index

Returns a list of the files that you have uploaded to Stripe. The file uploads are returned sorted by creation date, with the most recently created file uploads appearing first.

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

CURL Command

curl https://files.stripe.com/v1/files?limit=3 \
   -u STRIPE_SECRET_KEY: \
   -G

PHP Extension Example

<?php

// The version number (9_5_0) should match version of the Chilkat extension used, omitting the micro-version number.
// For example, if using Chilkat v9.5.0.48, then include as shown here:
include("chilkat_9_5_0.php");

$rest = new CkRest();

//  URL: https://files.stripe.com/v1/files?limit=3
$bTls = true;
$port = 443;
$bAutoReconnect = true;
$success = $rest->Connect('files.stripe.com',$port,$bTls,$bAutoReconnect);
if ($success != true) {
    print 'ConnectFailReason: ' . $rest->get_ConnectFailReason() . "\n";
    print $rest->lastErrorText() . "\n";
    exit;
}

$rest->SetAuthBasic('STRIPE_SECRET_KEY','');

$sbResponseBody = new CkStringBuilder();
$success = $rest->FullRequestNoBodySb('GET','/v1/files?limit=3',$sbResponseBody);
if ($success != true) {
    print $rest->lastErrorText() . "\n";
    exit;
}

$jsonResponse = new CkJsonObject();
$jsonResponse->LoadSb($sbResponseBody);

$object = $jsonResponse->stringOf('object');
$url = $jsonResponse->stringOf('url');
$has_more = $jsonResponse->BoolOf('has_more');
$i = 0;
$count_i = $jsonResponse->SizeOfArray('data');
while ($i < $count_i) {
    $jsonResponse->put_I($i);
    $id = $jsonResponse->stringOf('data[i].id');
    $object = $jsonResponse->stringOf('data[i].object');
    $created = $jsonResponse->IntOf('data[i].created');
    $filename = $jsonResponse->stringOf('data[i].filename');
    $purpose = $jsonResponse->stringOf('data[i].purpose');
    $size = $jsonResponse->IntOf('data[i].size');
    $type = $jsonResponse->stringOf('data[i].type');
    $url = $jsonResponse->stringOf('data[i].url');
    $i = $i + 1;
}


?>

Sample JSON Response Body

{
  "object": "list",
  "url": "/v1/files",
  "has_more": false,
  "data": [
    {
      "id": "file_1BnEEuGswQrCoh0XqB3XkqAg",
      "object": "file_upload",
      "created": 1516661888,
      "filename": "path",
      "purpose": "sigma_scheduled_query",
      "size": 500,
      "type": "csv",
      "url": "https://stripe-upload-api.s3.amazonaws.com/uploads/file_1BnEEuGswQrCoh0XqB3XkqAg?AWSAccessKeyId=KEY_ID\u0026Expires=TIMESTAMP\u0026Signature=SIGNATURE"
    }
  ]
}