Ejemplo n.º 1
0
        /// <summary>
        /// Unregister Unregister from an event
        /// </summary>
        /// <exception cref="com.telstra.eventdetection.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="eventType">Event Type</param>
        /// <param name="body">List of subscribed phone numbers and notification URL (optional)</param>
        /// <returns>Task of ResisterPhoneNumberList</returns>
        public async System.Threading.Tasks.Task <ResisterPhoneNumberList> UnregisterAsync(string eventType, UnregisterRequestObj body)
        {
            ApiResponse <ResisterPhoneNumberList> localVarResponse = await UnregisterAsyncWithHttpInfo(eventType, body);

            return(localVarResponse.Data);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Unregister Unregister from an event
        /// </summary>
        /// <exception cref="com.telstra.eventdetection.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="eventType">Event Type</param>
        /// <param name="body">List of subscribed phone numbers and notification URL (optional)</param>
        /// <returns>Task of ApiResponse (ResisterPhoneNumberList)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <ResisterPhoneNumberList> > UnregisterAsyncWithHttpInfo(string eventType, UnregisterRequestObj body)
        {
            // verify the required parameter 'eventType' is set
            if (eventType == null)
            {
                throw new ApiException(400, "Missing required parameter 'eventType' when calling RegistrationApi->Unregister");
            }
            // verify the required parameter 'body' is set
            if (body == null)
            {
                throw new ApiException(400, "Missing required parameter 'body' when calling RegistrationApi->Unregister");
            }

            var    localVarPath         = "/v1/eventdetection/events/{eventType}";
            var    localVarPathParams   = new Dictionary <String, String>();
            var    localVarQueryParams  = new List <KeyValuePair <String, String> >();
            var    localVarHeaderParams = new Dictionary <String, String>(Configuration.DefaultHeader);
            var    localVarFormParams   = new Dictionary <String, String>();
            var    localVarFileParams   = new Dictionary <String, FileParameter>();
            Object localVarPostBody     = null;

            // to determine the Content-Type header
            String[] localVarHttpContentTypes = new String[] {
                "application/json"
            };
            String localVarHttpContentType = Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

            // to determine the Accept header
            String[] localVarHttpHeaderAccepts = new String[] {
                "application/json"
            };
            String localVarHttpHeaderAccept = Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts);

            if (localVarHttpHeaderAccept != null)
            {
                localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept);
            }

            if (eventType != null)
            {
                localVarPathParams.Add("eventType", Configuration.ApiClient.ParameterToString(eventType));                    // path parameter
            }
            if (body != null && body.GetType() != typeof(byte[]))
            {
                localVarPostBody = Configuration.ApiClient.Serialize(body); // http body (model) parameter
            }
            else
            {
                localVarPostBody = body; // byte array
            }

            // authentication (auth) required
            // oauth required
            if (!String.IsNullOrEmpty(Configuration.AccessToken))
            {
                localVarHeaderParams["Authorization"] = "Bearer " + Configuration.AccessToken;
            }

            // make the HTTP request
            IRestResponse localVarResponse = (IRestResponse)await Configuration.ApiClient.CallApiAsync(localVarPath,
                                                                                                       Method.DELETE, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
                                                                                                       localVarPathParams, localVarHttpContentType);

            int localVarStatusCode = (int)localVarResponse.StatusCode;

            if (ExceptionFactory != null)
            {
                Exception exception = ExceptionFactory("Unregister", localVarResponse);
                if (exception != null)
                {
                    throw exception;
                }
            }

            return(new ApiResponse <ResisterPhoneNumberList>(localVarStatusCode,
                                                             localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                             (ResisterPhoneNumberList)Configuration.ApiClient.Deserialize(localVarResponse, typeof(ResisterPhoneNumberList))));
        }
Ejemplo n.º 3
0
        /// <summary>
        /// Unregister Unregister from an event
        /// </summary>
        /// <exception cref="com.telstra.eventdetection.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="eventType">Event Type</param>
        /// <param name="body">List of subscribed phone numbers and notification URL (optional)</param>
        /// <returns>ResisterPhoneNumberList</returns>
        public ResisterPhoneNumberList Unregister(string eventType, UnregisterRequestObj body)
        {
            ApiResponse <ResisterPhoneNumberList> localVarResponse = UnregisterWithHttpInfo(eventType, body);

            return(localVarResponse.Data);
        }