Android / DocuSign REST API / Gets a page image from an envelope for display.
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("dpi","{{dpi}}");
queryParams.UpdateString("max_height","{{max_height}}");
queryParams.UpdateString("max_width","{{max_width}}");
queryParams.UpdateString("show_changes","{{show_changes}}");
// Adds the "Authorization: Bearer {{accessToken}}" header.
http.put_AuthToken("{{accessToken}}");
http.SetRequestHeader("Accept","image/png");
CkHttpResponse resp = http.QuickRequestParams("GET","https://domain.com/v2.1/accounts/{{accountId}}/envelopes/{{envelopeId}}/documents/{{documentId}}/pages/{{pageNumber}}/page_image",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 "dpi=%7B%7Bdpi%7D%7D"
-d "max_height=%7B%7Bmax_height%7D%7D"
-d "max_width=%7B%7Bmax_width%7D%7D"
-d "show_changes=%7B%7Bshow_changes%7D%7D"
-H "Accept: image/png"
-H "Authorization: Bearer {{accessToken}}"
https://domain.com/v2.1/accounts/{{accountId}}/envelopes/{{envelopeId}}/documents/{{documentId}}/pages/{{pageNumber}}/page_image
Postman Collection Item JSON
{
"name": "Gets a page image from an envelope for display.",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "image/png"
},
{
"key": "Authorization",
"value": "Bearer {{accessToken}}"
}
],
"url": {
"raw": "{{baseUrl}}/v2.1/accounts/{{accountId}}/envelopes/{{envelopeId}}/documents/{{documentId}}/pages/{{pageNumber}}/page_image?dpi={{dpi}}&max_height={{max_height}}&max_width={{max_width}}&show_changes={{show_changes}}",
"host": [
"{{baseUrl}}"
],
"path": [
"v2.1",
"accounts",
"{{accountId}}",
"envelopes",
"{{envelopeId}}",
"documents",
"{{documentId}}",
"pages",
"{{pageNumber}}",
"page_image"
],
"query": [
{
"key": "dpi",
"value": "{{dpi}}"
},
{
"key": "max_height",
"value": "{{max_height}}"
},
{
"key": "max_width",
"value": "{{max_width}}"
},
{
"key": "show_changes",
"value": "{{show_changes}}"
}
],
"variable": [
{
"key": "accountId",
"value": "{{accountId}}"
},
{
"key": "documentId",
"value": "{{documentId}}"
},
{
"key": "envelopeId",
"value": "{{envelopeId}}"
},
{
"key": "pageNumber",
"value": "{{pageNumber}}"
}
]
},
"description": "Retrieves a page image for display from the specified envelope."
},
"response": [
]
}