Advertisement
Guest User

Untitled

a guest
Oct 3rd, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Array
  2. (
  3.     [uri] => http://api.gr.finer.es/v1/loans/new-loan
  4.     [data] => Array
  5.         (
  6.             [typeOfProduct] => 1
  7.             [loanAmount] => 300
  8.             [term] => 14
  9.             [paymentStartDate] => 03.10.2018
  10.             [bankAccountNumber] => ES0614650100911729673949
  11.             [userSettings] =>             [gaUserId] => GA1.2.1765441204.1538541454
  12.             [transferMethod] => 1
  13.             [userId] => 19919
  14.             [orderId] => 23483
  15.         )
  16.  
  17.     [headers] => Array
  18.         (
  19.         )
  20.  
  21.     [content] => {"data":{"response":{"status":true},"result":{"loanId":22767,"status":8003,"repeated":false,"requestDate":"2018-10-03 06:40:46"}}}
  22.  
  23.  
  24. Server Error in '/' Application.
  25.  
  26.  
  27.            
  28.  Runtime Error
  29.  
  30.  
  31.            
  32.  
  33.              Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
  34.            
  35.  
  36.  
  37.  
  38.             Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
  39.  
  40.  
  41.  
  42.            
  43.  
  44.                      
  45.  
  46. <!-- Web.Config Configuration File -->
  47.  
  48. <configuration>
  49.     <system.web>
  50.         <customErrors mode="Off"/>
  51.     </system.web>
  52. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement