A sample for practice.
GET https://sample-customers-api.herokuapp.com/api/thf-samples/v1/people
GET https://sample-customers-api.herokuapp.com/api/thf-samples/v1/people/:id
POST https://sample-customers-api.herokuapp.com/api/thf-samples/v1/people
{ "name": "name", "email": "email@email.com", "status": "Active" }
PUT https://sample-customers-api.herokuapp.com/api/thf-samples/v1/people/:id
{ "nickname": "Dude", "street": "Street X" }
DELETE https://sample-customers-api.herokuapp.com/api/thf-samples/v1/people
[
{ "id": 12345 },
{ "id": 67890 }
]
DELETE https://sample-customers-api.herokuapp.com/api/thf-samples/v1/people/:id