Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. data = new FormData();
  2. data.append('userName', 'dummy');
  3. data.append('UserFullName', '');
  4. data.append('UserEmail', '');
  5. data.append('Password', '')
  6. data.append('ConfirmPassword', '')
  7. data.append('SelectedRole', 16513)
  8.  
  9. $.ajax({
  10. url: 'https://sdb.tid.onespan.cloud/irm/Admin/UserAdmin/UpdateUser',
  11. data: data,
  12. processData: false,
  13. type: 'POST',
  14. success: function ( data ) {
  15. alert( data );
  16. }
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement