Week 4 Day 4

... Less than 1 minute

# Week 4 Day 4

What does REST stand for, and in simple terms what does it mean?

What does Stateless mean?

What URL pattern is used when writing a RESTful API?

  1. REST is a architectual style for API's. It was designed by Roy Fielding in 2000.

  2. Stateless means that the API doesn't remember anything about the user. It also doesn't remember any requests by the user.

  3. The HTTP Url pattern is used for RESTful API. It is also recommended that you use plural nouns.

Daily Challenge https://github.com/JordanWilker/4-Week-4-Day