Qrent
  1. User Preferences
Qrent
  • User Authentification
    • User Login
      POST
    • User Register
      POST
    • Auth Profile
      PUT
    • Verification Email
      POST
    • Verify Email
      POST
  • User Preferences
    • User Profile
      GET
    • User Profile
      PUT
    • User Preferences
      GET
  • Property
    • Subscribe to Property
      PUT
    • Unsubscribe from Property
      DELETE
    • Get User Subscriptions
      GET
    • Get Properties List Based on Preference
      POST
    • Region Statistics
      GET
  • Other
    • Echo
      GET
    • Clear Data
      DELETE
  • Schemas
    • User
    • Preference
    • Property
  1. User Preferences

User Profile

PUT
/users/profile
Email preference type is define in /shared/enum.ts

Request

Body Params application/json

Example
{
    "name": "new name",
    "gender": 1,
    "emailPreferences": [
        {
            "type": 1
        }
    ]
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://api.qrent.rent/users/profile' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "new name",
    "gender": 1,
    "emailPreferences": [
        {
            "type": 1
        }
    ]
}'

Responses

🟢200Success
application/json
Body

Example
{
    "message": "string"
}
🟠400Bad Request
Modified at 2025-07-30 05:24:01
Previous
User Profile
Next
User Preferences
Built with