Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
*/
public AddFolderShareResponse addFolderShare(String indexKey,
AddFolderShareRequest addFolderShareRequest, String siteId) throws ApiException {
ApiResponse localVarResp =
addFolderShareWithHttpInfo(indexKey, addFolderShareRequest, siteId);
return localVarResp.getData();
}
/**
*
* Creates a new folder share; ONLY available with FormKiQ Enterprise
*
* @param indexKey Index Key Identifier (required)
* @param addFolderShareRequest (required)
* @param siteId Site Identifier (optional)
* @return ApiResponse<AddFolderShareResponse>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the
* response body
* @http.response.details
*
*/
public ApiResponse addFolderShareWithHttpInfo(String indexKey,
AddFolderShareRequest addFolderShareRequest, String siteId) throws ApiException {
okhttp3.Call localVarCall =
addFolderShareValidateBeforeCall(indexKey, addFolderShareRequest, siteId, null);
Type localVarReturnType = new TypeToken() {}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType);
}
/**
* (asynchronously) Creates a new folder share; ONLY available with FormKiQ Enterprise
*
* @param indexKey Index Key Identifier (required)
* @param addFolderShareRequest (required)
* @param siteId Site Identifier (optional)
* @param _callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
* @http.response.details
*
*/
public DeleteShareResponse deleteShare(String shareKey) throws ApiException {
ApiResponse localVarResp = deleteShareWithHttpInfo(shareKey);
return localVarResp.getData();
}
/**
*
* Delete a specific document share; ONLY available with FormKiQ Enterprise
*
* @param shareKey Share Identifier (required)
* @return ApiResponse<DeleteShareResponse>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the
* response body
* @http.response.details
*
*/
public ApiResponse deleteShareWithHttpInfo(String shareKey)
throws ApiException {
okhttp3.Call localVarCall = deleteShareValidateBeforeCall(shareKey, null);
Type localVarReturnType = new TypeToken() {}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType);
}
/**
* (asynchronously) Delete a specific document share; ONLY available with FormKiQ Enterprise
*
* @param shareKey Share Identifier (required)
* @param _callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
* @http.response.details
*
*/
public okhttp3.Call deleteShareAsync(String shareKey,
final ApiCallback _callback) throws ApiException {
okhttp3.Call localVarCall = deleteShareValidateBeforeCall(shareKey, _callback);
Type localVarReturnType = new TypeToken() {}.getType();
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
return localVarCall;
}
/**
* Build call for getUserShares
*
* @param group Group Identifier (optional)
* @param limit Limit Results (optional, default to 10)
* @param next Next page of results token (optional)
* @param _callback Callback for upload/download progress
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
* @http.response.details
*
*/
public GetUserShares getUserShares(String group, String limit, String next) throws ApiException {
ApiResponse localVarResp = getUserSharesWithHttpInfo(group, limit, next);
return localVarResp.getData();
}
/**
*
* Get a listing of user folder/document shares; ONLY available with FormKiQ Enterprise
*
* @param group Group Identifier (optional)
* @param limit Limit Results (optional, default to 10)
* @param next Next page of results token (optional)
* @return ApiResponse<GetUserShares>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the
* response body
* @http.response.details
*
*/
public ApiResponse getUserSharesWithHttpInfo(String group, String limit,
String next) throws ApiException {
okhttp3.Call localVarCall = getUserSharesValidateBeforeCall(group, limit, next, null);
Type localVarReturnType = new TypeToken() {}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType);
}
/**
* (asynchronously) Get a listing of user folder/document shares; ONLY available with FormKiQ
* Enterprise
*
* @param group Group Identifier (optional)
* @param limit Limit Results (optional, default to 10)
* @param next Next page of results token (optional)
* @param _callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
* @http.response.details
*