{ "opencollection": "1.0.0", "info": { "name": "Strapi Admin Panel Admin Authentication Users API", "version": "5.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Users", "type": "folder" }, "items": [ { "info": { "name": "List users", "type": "http" }, "http": { "method": "GET", "url": "https://{host}/api/users" }, "docs": "Returns a list of all registered end-user accounts. Requires appropriate permissions to access." }, { "info": { "name": "Get a user", "type": "http" }, "http": { "method": "GET", "url": "https://{host}/api/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique ID of the user" } ] }, "docs": "Returns a single end-user account by their ID." }, { "info": { "name": "Update a user", "type": "http" }, "http": { "method": "PUT", "url": "https://{host}/api/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique ID of the user" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an end-user account by their ID. Only the fields included in the request body will be updated." }, { "info": { "name": "Delete a user", "type": "http" }, "http": { "method": "DELETE", "url": "https://{host}/api/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique ID of the user" } ] }, "docs": "Deletes an end-user account by their ID. This action is irreversible." }, { "info": { "name": "Get the authenticated user", "type": "http" }, "http": { "method": "GET", "url": "https://{host}/api/users/me" }, "docs": "Returns the profile of the currently authenticated user based on the JWT token provided in the Authorization header." } ] } ], "bundled": true }