Show specific Organization POST /organizations - Create Organization POST /organizations/{id} - Update Organization (partial) PUT /organizations/{id} - Update Organization (full/overwrite) DELETE /organizations/{id} - Delete specific Organization
$_POST? PHP is weird. • $_GET & $_POST have nothing to do with the HTTP method. • $_GET reads the query string from the URL • $_POST reads a query string from the request body IF the header “application/x-www-form-urlencoded” is present • $_POST - everything is a string