diff --git a/packages/core/strapi/lib/core-api/routes/index.js b/packages/core/strapi/lib/core-api/routes/index.js index 9300107ccb..50e0e6d652 100644 --- a/packages/core/strapi/lib/core-api/routes/index.js +++ b/packages/core/strapi/lib/core-api/routes/index.js @@ -14,19 +14,19 @@ const getSingleTypeRoutes = ({ uid, info }) => { return { find: { method: 'GET', - path: `/${info.pluralName}`, + path: `/${info.singularName}`, handler: `${uid}.find`, config: {}, }, update: { method: 'PUT', - path: `/${info.pluralName}`, + path: `/${info.singularName}`, handler: `${uid}.update`, config: {}, }, delete: { method: 'DELETE', - path: `/${info.pluralName}`, + path: `/${info.singularName}`, handler: `${uid}.delete`, config: {}, },