Exemple #1
0
        /// <summary>
        ///  Used to retrieve the historical statuses and lifecycle events for a token, such as when it was initially activated, subsequently suspended or resumed, and finally deleted.
        /// </summary>
        /// <exception cref="YourApp.MdesCustomerClient.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="tokenStatusHistoryRequestSchema">Contains the details of the request message. (optional)</param>
        /// <returns>Task of ApiResponse (TokenStatusHistoryResponseSchema)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <TokenStatusHistoryResponseSchema> > TokenStatushistoryPostAsyncWithHttpInfo(TokenStatusHistoryRequestSchema tokenStatusHistoryRequestSchema = null)
        {
            var    localVarPath         = "/token/statushistory";
            var    localVarPathParams   = new Dictionary <String, String>();
            var    localVarQueryParams  = new List <KeyValuePair <String, String> >();
            var    localVarHeaderParams = new Dictionary <String, String>(this.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 = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

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

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

            if (tokenStatusHistoryRequestSchema != null && tokenStatusHistoryRequestSchema.GetType() != typeof(byte[]))
            {
                localVarPostBody = this.Configuration.ApiClient.Serialize(tokenStatusHistoryRequestSchema); // http body (model) parameter
            }
            else
            {
                localVarPostBody = tokenStatusHistoryRequestSchema; // byte array
            }


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

            int localVarStatusCode = (int)localVarResponse.StatusCode;

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

            return(new ApiResponse <TokenStatusHistoryResponseSchema>(localVarStatusCode,
                                                                      localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                                      (TokenStatusHistoryResponseSchema)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(TokenStatusHistoryResponseSchema))));
        }
Exemple #2
0
        /// <summary>
        ///  Used to retrieve the historical statuses and lifecycle events for a token, such as when it was initially activated, subsequently suspended or resumed, and finally deleted.
        /// </summary>
        /// <exception cref="YourApp.MdesCustomerClient.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="tokenStatusHistoryRequestSchema">Contains the details of the request message. (optional)</param>
        /// <returns>Task of TokenStatusHistoryResponseSchema</returns>
        public async System.Threading.Tasks.Task <TokenStatusHistoryResponseSchema> TokenStatushistoryPostAsync(TokenStatusHistoryRequestSchema tokenStatusHistoryRequestSchema = null)
        {
            ApiResponse <TokenStatusHistoryResponseSchema> localVarResponse = await TokenStatushistoryPostAsyncWithHttpInfo(tokenStatusHistoryRequestSchema);

            return(localVarResponse.Data);
        }
Exemple #3
0
        /// <summary>
        ///  Used to retrieve the historical statuses and lifecycle events for a token, such as when it was initially activated, subsequently suspended or resumed, and finally deleted.
        /// </summary>
        /// <exception cref="YourApp.MdesCustomerClient.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="tokenStatusHistoryRequestSchema">Contains the details of the request message. (optional)</param>
        /// <returns>TokenStatusHistoryResponseSchema</returns>
        public TokenStatusHistoryResponseSchema TokenStatushistoryPost(TokenStatusHistoryRequestSchema tokenStatusHistoryRequestSchema = null)
        {
            ApiResponse <TokenStatusHistoryResponseSchema> localVarResponse = TokenStatushistoryPostWithHttpInfo(tokenStatusHistoryRequestSchema);

            return(localVarResponse.Data);
        }