Snippets

Purvesh Khona Delete/Unscribe from group

Updated by Purvesh Khona

File Delete or Unsubscribe from a group Added

  • Ignore whitespace
  • Hide word diff
+/**
+ * 
+ */
+package com.braango.virtualdealer.group;
+
+import java.util.List;
+import java.util.Map;
+
+import com.braango.client.ApiCallback;
+import com.braango.client.ApiClient;
+import com.braango.client.ApiException;
+import com.braango.client.braangoapi.EmailsApi;
+import com.braango.client.braangoapi.GroupsApi;
+import com.braango.client.braangomodel.EmailOutputBodyData;
+import com.braango.client.braangomodel.GroupOutput;
+import com.braango.client.braangomodel.GroupOutputBodyData;
+import com.braango.client.braangomodel.RequestHeader;
+import com.braango.client.braangomodel.EmailInput;
+import com.braango.client.braangomodel.EmailInputBody;
+import com.braango.client.braangomodel.EmailOutput;
+
+/**
+ * @author braango
+ * 
+ *    Sample code showing how to delete one group
+ *    
+ *   
+ *
+ */
+public class DeleteGroup {
+
+	static String basePath = "https://testapi2.braango.com/v2/braango";
+
+	/**
+	 * @param args
+	 */
+	public static void main(String[] args) {
+		// TODO Auto-generated method stub
+
+		ApiClient braangoApiClient = new ApiClient();
+		// TEST auth token. Please contact
+		// sales@braango.com to have one
+		// created for you
+		String authToken = "ISNWF0P30WM0CMK";
+		braangoApiClient.setBasePath(basePath);
+
+		// Set the auth_token for api client to
+		// interact with Braango system
+		braangoApiClient.setApiKey(authToken);
+
+		// Api key is authorization to to access
+		// resources within braango system
+		//
+		// This key is different than auth_token
+		// that is used to validate the master account
+
+		String apiKey = "ISNfTMNOumV3xYNDd2g";
+
+		// Create personnel api. Personnel is hosted by subDealer
+		GroupsApi groupApi = new GroupsApi(braangoApiClient);
+		
+		final Boolean typeAdfCrmEmail = false;
+
+		ApiCallback<GroupOutput> callBack = new ApiCallback<GroupOutput>() {
+
+			@Override
+			public void onUploadProgress(long bytesWritten, 
+					long contentLength,
+					boolean done) {
+
+				System.out
+						.println("Place holder for tracking"
+								+ " request progress");
+
+			}
+
+			@Override
+			public void onSuccess(GroupOutput result, int statusCode,
+					Map<String, List<String>> responseHeaders) {
+
+				GroupOutputBodyData groups = result.getBody()
+						.getData();
+				
+				
+				
+
+				System.out.println("Groups : " + groups.getGroups());
+
+			}
+
+			@Override
+			public void onFailure(ApiException e, int statusCode,
+					Map<String, List<String>> responseHeaders) {
+				System.out.println("Error is " + statusCode + " "
+						+ e.getResponseBody());
+
+			}
+
+			@Override
+			public void onDownloadProgress(long bytesRead, long contentLength,
+					boolean done) {
+
+			}
+		};
+
+		
+		try {
+			String subDealerId = "subdealers1002";
+			String salesPersonId = "b6520174-f4de-4ae6-b3e9-7f74174cb2d2";
+			String accountType   = "partner";
+			String group = "test grp";
+			groupApi.deleteGroupAsync(subDealerId, salesPersonId, group, apiKey, accountType, callBack);
+			
+		} catch (ApiException e1) {
+			e1.printStackTrace();
+		}
+	}
+
+}

File snippet.java Deleted

  • Ignore whitespace
  • Hide word diff
-/**
- * 
- */
-package com.braango.virtualdealer.group;
-
-import java.util.List;
-import java.util.Map;
-
-import com.braango.client.ApiCallback;
-import com.braango.client.ApiClient;
-import com.braango.client.ApiException;
-import com.braango.client.braangoapi.EmailsApi;
-import com.braango.client.braangoapi.GroupsApi;
-import com.braango.client.braangomodel.EmailOutputBodyData;
-import com.braango.client.braangomodel.GroupOutput;
-import com.braango.client.braangomodel.GroupOutputBodyData;
-import com.braango.client.braangomodel.RequestHeader;
-import com.braango.client.braangomodel.EmailInput;
-import com.braango.client.braangomodel.EmailInputBody;
-import com.braango.client.braangomodel.EmailOutput;
-
-/**
- * @author braango
- * 
- *    Sample code showing how to delete one group
- *    
- *   
- *
- */
-public class DeleteGroup {
-
-	static String basePath = "https://testapi2.braango.com/v2/braango";
-
-	/**
-	 * @param args
-	 */
-	public static void main(String[] args) {
-		// TODO Auto-generated method stub
-
-		ApiClient braangoApiClient = new ApiClient();
-		// TEST auth token. Please contact
-		// sales@braango.com to have one
-		// created for you
-		String authToken = "ISNWF0P30WM0CMK";
-		braangoApiClient.setBasePath(basePath);
-
-		// Set the auth_token for api client to
-		// interact with Braango system
-		braangoApiClient.setApiKey(authToken);
-
-		// Api key is authorization to to access
-		// resources within braango system
-		//
-		// This key is different than auth_token
-		// that is used to validate the master account
-
-		String apiKey = "ISNfTMNOumV3xYNDd2g";
-
-		// Create personnel api. Personnel is hosted by subDealer
-		GroupsApi groupApi = new GroupsApi(braangoApiClient);
-		
-		final Boolean typeAdfCrmEmail = false;
-
-		ApiCallback<GroupOutput> callBack = new ApiCallback<GroupOutput>() {
-
-			@Override
-			public void onUploadProgress(long bytesWritten, 
-					long contentLength,
-					boolean done) {
-
-				System.out
-						.println("Place holder for tracking"
-								+ " request progress");
-
-			}
-
-			@Override
-			public void onSuccess(GroupOutput result, int statusCode,
-					Map<String, List<String>> responseHeaders) {
-
-				GroupOutputBodyData groups = result.getBody()
-						.getData();
-				
-				
-				
-
-				System.out.println("Groups : " + groups.getGroups());
-
-			}
-
-			@Override
-			public void onFailure(ApiException e, int statusCode,
-					Map<String, List<String>> responseHeaders) {
-				System.out.println("Error is " + statusCode + " "
-						+ e.getResponseBody());
-
-			}
-
-			@Override
-			public void onDownloadProgress(long bytesRead, long contentLength,
-					boolean done) {
-
-			}
-		};
-
-		
-		try {
-			String subDealerId = "subdealers1002";
-			String salesPersonId = "b6520174-f4de-4ae6-b3e9-7f74174cb2d2";
-			String accountType   = "partner";
-			String group = "test grp";
-			groupApi.deleteGroupAsync(subDealerId, salesPersonId, group, apiKey, accountType, callBack);
-			
-		} catch (ApiException e1) {
-			e1.printStackTrace();
-		}
-	}
-
-}
Created by Purvesh Khona

File snippet.java Added

  • Ignore whitespace
  • Hide word diff
+/**
+ * 
+ */
+package com.braango.virtualdealer.group;
+
+import java.util.List;
+import java.util.Map;
+
+import com.braango.client.ApiCallback;
+import com.braango.client.ApiClient;
+import com.braango.client.ApiException;
+import com.braango.client.braangoapi.EmailsApi;
+import com.braango.client.braangoapi.GroupsApi;
+import com.braango.client.braangomodel.EmailOutputBodyData;
+import com.braango.client.braangomodel.GroupOutput;
+import com.braango.client.braangomodel.GroupOutputBodyData;
+import com.braango.client.braangomodel.RequestHeader;
+import com.braango.client.braangomodel.EmailInput;
+import com.braango.client.braangomodel.EmailInputBody;
+import com.braango.client.braangomodel.EmailOutput;
+
+/**
+ * @author braango
+ * 
+ *    Sample code showing how to delete one group
+ *    
+ *   
+ *
+ */
+public class DeleteGroup {
+
+	static String basePath = "https://testapi2.braango.com/v2/braango";
+
+	/**
+	 * @param args
+	 */
+	public static void main(String[] args) {
+		// TODO Auto-generated method stub
+
+		ApiClient braangoApiClient = new ApiClient();
+		// TEST auth token. Please contact
+		// sales@braango.com to have one
+		// created for you
+		String authToken = "ISNWF0P30WM0CMK";
+		braangoApiClient.setBasePath(basePath);
+
+		// Set the auth_token for api client to
+		// interact with Braango system
+		braangoApiClient.setApiKey(authToken);
+
+		// Api key is authorization to to access
+		// resources within braango system
+		//
+		// This key is different than auth_token
+		// that is used to validate the master account
+
+		String apiKey = "ISNfTMNOumV3xYNDd2g";
+
+		// Create personnel api. Personnel is hosted by subDealer
+		GroupsApi groupApi = new GroupsApi(braangoApiClient);
+		
+		final Boolean typeAdfCrmEmail = false;
+
+		ApiCallback<GroupOutput> callBack = new ApiCallback<GroupOutput>() {
+
+			@Override
+			public void onUploadProgress(long bytesWritten, 
+					long contentLength,
+					boolean done) {
+
+				System.out
+						.println("Place holder for tracking"
+								+ " request progress");
+
+			}
+
+			@Override
+			public void onSuccess(GroupOutput result, int statusCode,
+					Map<String, List<String>> responseHeaders) {
+
+				GroupOutputBodyData groups = result.getBody()
+						.getData();
+				
+				
+				
+
+				System.out.println("Groups : " + groups.getGroups());
+
+			}
+
+			@Override
+			public void onFailure(ApiException e, int statusCode,
+					Map<String, List<String>> responseHeaders) {
+				System.out.println("Error is " + statusCode + " "
+						+ e.getResponseBody());
+
+			}
+
+			@Override
+			public void onDownloadProgress(long bytesRead, long contentLength,
+					boolean done) {
+
+			}
+		};
+
+		
+		try {
+			String subDealerId = "subdealers1002";
+			String salesPersonId = "b6520174-f4de-4ae6-b3e9-7f74174cb2d2";
+			String accountType   = "partner";
+			String group = "test grp";
+			groupApi.deleteGroupAsync(subDealerId, salesPersonId, group, apiKey, accountType, callBack);
+			
+		} catch (ApiException e1) {
+			e1.printStackTrace();
+		}
+	}
+
+}
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.