{ "opencollection": "1.0.0", "info": { "name": "Rentberry User API", "version": "4" }, "items": [ { "info": { "name": "User", "type": "folder" }, "items": [ { "info": { "name": "Get the current authenticated user profile.", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v:version/user", "params": [ { "name": "version", "value": "", "type": "path" } ] }, "docs": "Available since API version 1." }, { "info": { "name": "Update the profile of the current authenticated user.", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/v:version/user", "params": [ { "name": "version", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Available since API version 1." }, { "info": { "name": "Delete a user account (admin only).", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/v:version/user", "params": [ { "name": "version", "value": "", "type": "path" } ] }, "docs": "Available since API version 3." }, { "info": { "name": "Update local settings of the authenticated user.", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/v:version/user/local", "params": [ { "name": "version", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Available since API version 4." }, { "info": { "name": "Update the profile picture of the authenticated user.", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/v:version/user/picture", "params": [ { "name": "version", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Available since API version 1." }, { "info": { "name": "Get public profile of a user.", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v:version/user/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "User ID" }, { "name": "version", "value": "", "type": "path" } ] }, "docs": "Available since API version 1." }, { "info": { "name": "Verify user email with reference token.", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/v:version/user/email-verify/:reference", "params": [ { "name": "reference", "value": "", "type": "path", "description": "Email verification reference token" }, { "name": "version", "value": "", "type": "path" } ] }, "docs": "Available since API version 1." }, { "info": { "name": "Resend email verification message.", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/v:version/user/email-verify", "params": [ { "name": "version", "value": "", "type": "path" } ] }, "docs": "Available since API version 1." }, { "info": { "name": "Mark email verification reminder as shown.", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/v:version/user/email-verify", "params": [ { "name": "version", "value": "", "type": "path" } ] }, "docs": "Available since API version 1." }, { "info": { "name": "Get user location information based on IP.", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v:version/user/location/info", "params": [ { "name": "version", "value": "", "type": "path" } ] }, "docs": "Available since API version 4. Returns IP address and country information based on request headers." }, { "info": { "name": "Get user profile apartment listings.", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v:version/user/:id/profile-apartment-list", "params": [ { "name": "id", "value": "", "type": "path", "description": "User ID" }, { "name": "page", "value": "", "type": "query", "description": "Page number for pagination" }, { "name": "limit", "value": "", "type": "query", "description": "Items per page" }, { "name": "version", "value": "", "type": "path" } ] }, "docs": "Available since API version 1. Returns paginated list of apartments for a specific user profile." } ] } ], "bundled": true }