- OUTBACK APIs
- User
- Post
- Get Popular Categories Post
- Add Post
- Update Post
- Get Post
- Get My Post
- Detail Post By Id
- Get Trending Posts
- Get Most Viewed Post
- get specfic user post
- Record Fav_Unfav post
- Get Favt Post
- Record Views
- All Posts Views
- Add Comment
- Get Comments
- Get Collection List
- Get Post Collection
- Remove Collection
- Soft Delete Post
- Delete Post
- Update Sold Type
- report post
- update thumnail of posts
- ChatRoom/Messages
- Town Hall
- notfication
- Category
- Payments
- PAYMENTS APIS
Update User
PUT
/usr-mgt/update
Request
Header Params
Authorization
string
required
Example:
bearer {{accessToken}}
Body Params application/json
social_links
array [object {2}]
required
platform
string
required
url
string
required
profile_photo_url
string
required
address
object
required
zip_code
string
required
place
string
required
location
object
required
type
string
required
coordinates
array[number]
required
name
string
required
phone
string
required
fcm_token
string
required
Example
{
// u can here update address,location,phone
"profile_photo_url":"https://outback-dev-bucket.s3.ap-southeast-2.amazonaws.com/image_picker_25030447-2DA0-4377-9D43-DD46BF24E558-960-000000A708E597BC.jpg",
"address":{
"zip_code":"6500",
"place":"wapda town"
},
"location": {
"type": "Point",
"coordinates": [40.7128, -74.0060]
},
"name":"naveednizami",
"phone":"03097176203",
"fcm_token":"1234567898765432345678765432123456787654321`12345654321"
}
Request 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 'http://13.239.78.144:3000/api/v1/usr-mgt/update' \
--header 'Authorization: bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
// u can here update address,location,phone
"profile_photo_url":"https://outback-dev-bucket.s3.ap-southeast-2.amazonaws.com/image_picker_25030447-2DA0-4377-9D43-DD46BF24E558-960-000000A708E597BC.jpg",
"address":{
"zip_code":"6500",
"place":"wapda town"
},
"location": {
"type": "Point",
"coordinates": [40.7128, -74.0060]
},
"name":"naveednizami",
"phone":"03097176203",
"fcm_token":"1234567898765432345678765432123456787654321`12345654321"
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2025-04-09 08:59:26