Skip to content

Instantly share code, notes, and snippets.

@aslamanver
Last active January 30, 2019 06:10
Show Gist options
  • Save aslamanver/ee93943925e713c4b374d516a00d7f92 to your computer and use it in GitHub Desktop.
Save aslamanver/ee93943925e713c4b374d516a00d7f92 to your computer and use it in GitHub Desktop.
Reqres.in
$.ajax({
url: "https://reqres.in/api/users",
type: "POST",
data: {
name: "paul rudd",
movies: ["I Love You Man", "Role Models"]
},
success: function(response){
console.log(response);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment