Dart
Dart
Yousign: List Files
See more Yousign Examples
List Yousign files.Chilkat Dart Downloads
import 'package:chilkat/chilkat.dart';
void main() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
final http = CkHttp();
// Implements the following CURL command:
// curl --location --request GET 'https://staging-api.yousign.com/files' \
// --header 'Authorization: Bearer YOUR_API_KEY' \
// --header 'Content-Type: application/json'
// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code
// Adds the "Authorization: Bearer YOUR_API_KEY" header.
http.authToken = 'YOUR_API_KEY';
http.setRequestHeader('Content-Type', 'application/json');
final sbResponseBody = CkStringBuilder();
try {
http.quickGetSb('https://staging-api.yousign.com/files', sbResponseBody);
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
final json = CkJsonObject();
json.loadSb(sbResponseBody);
json.emitCompact = false;
print('Response Body:');
print(json.emit());
final respStatusCode = http.lastStatus;
print('Response Status Code = $respStatusCode');
if (respStatusCode >= 400) {
print('Response Header:');
print(http.lastHeader);
print('Failed.');
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "id": "\/files\/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
// "name": "abc.pdf",
// "type": "signable",
// "contentType": "application\/pdf",
// "description": null,
// "createdAt": "2020-05-27T09:14:12+02:00",
// "updatedAt": "2020-05-27T09:14:12+02:00",
// "sha256": "ea2a92b0eff5bebfa3ccd869fd61e27bb7fe973d0dff63f106d8b0d614469fa0",
// "metadata": [
// ],
// "workspace": "\/workspaces\/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
// "creator": null,
// "fileObjects": [
// ],
// "protected": false,
// "position": 0,
// "parent": null,
// "fieldsCompatible": true,
// "company": "\/companies\/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
// }
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
final id = json.stringOf('id');
final name = json.stringOf('name');
final vType = json.stringOf('type');
final contentType = json.stringOf('contentType');
final description = json.stringOf('description');
final createdAt = json.stringOf('createdAt');
final updatedAt = json.stringOf('updatedAt');
final sha256 = json.stringOf('sha256');
final workspace = json.stringOf('workspace');
final creator = json.stringOf('creator');
final position = json.intOf('position');
final parent = json.stringOf('parent');
final company = json.stringOf('company');
var i = 0;
var countI = json.sizeOfArray('metadata');
while (i < countI) {
json.i = i;
i++;
}
i = 0;
countI = json.sizeOfArray('fileObjects');
while (i < countI) {
json.i = i;
i++;
}
}