40 Matching Annotations
  1. Jan 2025
  2. Mar 2024
    1. Dictionary<string, object> accessTokenRequest = new Dictionary<string, object>();accessTokenRequest.Add("client_id","<CLIENT_ID>");accessTokenRequest.Add("client_secret","<CLIENT_SECRET>");accessTokenRequest.Add("refresh_token","<REFRESH_TOKEN>"); OAuthTokenClient oAuth = new OAuthTokenClient();OAuthTokenClient oAuthToken = oAuth.RevokeToken(accessTokenRequest);String accessToken = oAuthToken["access_token"]; // Initialize the clientRazorpayClient instance = new RazorpayClient(accessToken);

      Dictionary<string, object> refreshTokenRequest = new Dictionary<string, object>(); refreshTokenRequest.Add("client_id","<CLIENT_ID>"); refreshTokenRequest.Add("client_secret","<CLIENT_SECRET>"); refreshTokenRequest.Add("refresh_token","<REFRESH_TOKEN>");

      OAuthTokenClient oAuth = new OAuthTokenClient(); OAuthTokenClient oAuthToken = oAuth.RefreshToken(refreshTokenRequest); String accessToken = oAuthToken["access_token"];

      // Initialize the client RazorpayClient instance = new RazorpayClient(accessToken);

  3. Jul 2022
    1. List of webhook events and associated payloads when the account is in activated state.

      List of webhook events and associated payloads when the account is in activated kyc pending state.

      Note: This state is applicable only to no-document onboarded merchants onboarded via Onboarding APIs

    1. boolean This parameter is optional but needs to be added to accept terms and conditions. Possible value is only true.

      boolean Determines whether terms and conditions are accepted. Send this parameter along with the "ip" parameter. Possible values: true

      Add one more parameter below tnc_accepted-> "ip"(conditional) "string" The IP address of the merchant while accepting the terms & conditions. Send this parameter along with the "tnc_accepted" parameter.

    2. Sample Code for Updating Settlement Account Details and Providing OTP Detailsđź”— PG Request PG Response PL Request PL ResponseCopy

      Please remove this section. We already talked about it above

    3. the payment methods object has not been used.

      the settlements & otp specific details are submitted and other product configurations are requested. Payment methods object has not been used here.

    4. The IP address. Sent with the tnc_accepted parameter.

      The IP address of the merchant while accepting the terms & conditions. Send this parameter along with the "tnc_accepted" parameter.