Chilkat Online Tools

Android / DocuSign REST API / Reserved: Gets the shared item status for one or more users.

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("count","{{count}}");
    queryParams.UpdateString("envelopes_not_shared_user_status","{{envelopes_not_shared_user_status}}");
    queryParams.UpdateString("folder_ids","{{folder_ids}}");
    queryParams.UpdateString("item_type","{{item_type}}");
    queryParams.UpdateString("search_text","{{search_text}}");
    queryParams.UpdateString("shared","{{shared}}");
    queryParams.UpdateString("start_position","{{start_position}}");
    queryParams.UpdateString("user_ids","{{user_ids}}");

    // 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}}/shared_access",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 "count=%7B%7Bcount%7D%7D"
	-d "envelopes_not_shared_user_status=%7B%7Benvelopes_not_shared_user_status%7D%7D"
	-d "folder_ids=%7B%7Bfolder_ids%7D%7D"
	-d "item_type=%7B%7Bitem_type%7D%7D"
	-d "search_text=%7B%7Bsearch_text%7D%7D"
	-d "shared=%7B%7Bshared%7D%7D"
	-d "start_position=%7B%7Bstart_position%7D%7D"
	-d "user_ids=%7B%7Buser_ids%7D%7D"
	-H "Accept: application/json"
	-H "Authorization: Bearer {{accessToken}}"
https://domain.com/v2.1/accounts/{{accountId}}/shared_access

Postman Collection Item JSON

{
  "name": "Reserved: Gets the shared item status for one or more users.",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      },
      {
        "key": "Authorization",
        "value": "Bearer {{accessToken}}"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/v2.1/accounts/{{accountId}}/shared_access?count={{count}}&envelopes_not_shared_user_status={{envelopes_not_shared_user_status}}&folder_ids={{folder_ids}}&item_type={{item_type}}&search_text={{search_text}}&shared={{shared}}&start_position={{start_position}}&user_ids={{user_ids}}",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "v2.1",
        "accounts",
        "{{accountId}}",
        "shared_access"
      ],
      "query": [
        {
          "key": "count",
          "value": "{{count}}"
        },
        {
          "key": "envelopes_not_shared_user_status",
          "value": "{{envelopes_not_shared_user_status}}"
        },
        {
          "key": "folder_ids",
          "value": "{{folder_ids}}"
        },
        {
          "key": "item_type",
          "value": "{{item_type}}"
        },
        {
          "key": "search_text",
          "value": "{{search_text}}"
        },
        {
          "key": "shared",
          "value": "{{shared}}"
        },
        {
          "key": "start_position",
          "value": "{{start_position}}"
        },
        {
          "key": "user_ids",
          "value": "{{user_ids}}"
        }
      ],
      "variable": [
        {
          "key": "accountId",
          "value": "{{accountId}}"
        }
      ]
    },
    "description": "Reserved: Retrieves shared item status for one or more users and types of items.\n\nUsers with account administration privileges can retrieve shared access information for all account users. Users without account administrator privileges can only retrieve shared access information for themselves and the returned information is limited to the retrieving the status of all members of the account that are sharing their folders to the user. This is equivalent to setting the shared=shared_from."
  },
  "response": [
  ]
}