Reading-Notes
code fellows 301
Read: 12 - CRUD
Reading
Status Codes Based On REST Methods
- Descripe the data:
- 100’s = Tells client that header part of request has been received and server will try to transmit demand of the client.
- 200’s = Tells client that its request was accepted.
- 300’s = Tells client that the resource they are requesting isn’t available in tht location anymore.
- 400’s = Invalid requests a client sent to a server.
- 500’s = Problems with overwhelmed servers or unreachable.
- A status code 202 code tells the client that the request was valid, but is process.
- A status code 308 code is a permanent redirect.
- If an update didn’t return to a client, send code 404.
- If resource no longer exists, send code 410.
- The ‘Forbidden’ status code is code 403.