Android / DocuSign REST API / Gets a list of envelope documents.
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;
CkJsonObject queryParams = new CkJsonObject();
queryParams.UpdateString("documents_by_userid","{{documents_by_userid}}");
queryParams.UpdateString("include_document_size","{{include_document_size}}");
queryParams.UpdateString("include_metadata","{{include_metadata}}");
queryParams.UpdateString("include_tabs","{{include_tabs}}");
queryParams.UpdateString("recipient_id","{{recipient_id}}");
queryParams.UpdateString("shared_user_id","{{shared_user_id}}");
// Adds the "Authorization: Bearer {{accessToken}}" header.
http.put_AuthToken("{{accessToken}}");
http.SetRequestHeader("Accept","application/json");
CkHttpResponse resp = http.QuickRequestParams("GET","https://domain.com/v2.1/accounts/{{accountId}}/envelopes/{{envelopeId}}/documents",queryParams);
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 -G -d "documents_by_userid=%7B%7Bdocuments_by_userid%7D%7D"
-d "include_document_size=%7B%7Binclude_document_size%7D%7D"
-d "include_metadata=%7B%7Binclude_metadata%7D%7D"
-d "include_tabs=%7B%7Binclude_tabs%7D%7D"
-d "recipient_id=%7B%7Brecipient_id%7D%7D"
-d "shared_user_id=%7B%7Bshared_user_id%7D%7D"
-H "Accept: application/json"
-H "Authorization: Bearer {{accessToken}}"
https://domain.com/v2.1/accounts/{{accountId}}/envelopes/{{envelopeId}}/documents
Postman Collection Item JSON
{
"name": "Gets a list of envelope documents.",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Bearer {{accessToken}}"
}
],
"url": {
"raw": "{{baseUrl}}/v2.1/accounts/{{accountId}}/envelopes/{{envelopeId}}/documents?documents_by_userid={{documents_by_userid}}&include_document_size={{include_document_size}}&include_metadata={{include_metadata}}&include_tabs={{include_tabs}}&recipient_id={{recipient_id}}&shared_user_id={{shared_user_id}}",
"host": [
"{{baseUrl}}"
],
"path": [
"v2.1",
"accounts",
"{{accountId}}",
"envelopes",
"{{envelopeId}}",
"documents"
],
"query": [
{
"key": "documents_by_userid",
"value": "{{documents_by_userid}}"
},
{
"key": "include_document_size",
"value": "{{include_document_size}}"
},
{
"key": "include_metadata",
"value": "{{include_metadata}}"
},
{
"key": "include_tabs",
"value": "{{include_tabs}}"
},
{
"key": "recipient_id",
"value": "{{recipient_id}}"
},
{
"key": "shared_user_id",
"value": "{{shared_user_id}}"
}
],
"variable": [
{
"key": "accountId",
"value": "{{accountId}}"
},
{
"key": "envelopeId",
"value": "{{envelopeId}}"
}
]
},
"description": "Retrieves a list of documents associated with the specified envelope."
},
"response": [
]
}