You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GET - get all records /speeches no data attached
POST - create one record /speeches data attached to body for new record
PUT - update a record /speeches/:speech_id data for id is attached to params, update data is in body
DELETE - delete a record /speeches/:speech_id data for id is attached to params
The text was updated successfully, but these errors were encountered:
paths should follow the pattern:
GET - get all records
/speeches
no data attachedPOST - create one record
/speeches
data attached tobody
for new recordPUT - update a record
/speeches/:speech_id
data for id is attached toparams
, update data is inbody
DELETE - delete a record
/speeches/:speech_id
data for id is attached toparams
The text was updated successfully, but these errors were encountered: