PaySar
  1. User
PaySar
  • CLIENT
    • PaySar
      • Create Paysar
      • GET PAYSAR
      • GetUser Payser
      • Replay Paysar
      • Reply Paysar
    • Image
      • Get Images
    • Auth
      • Register
      • Login
      • Logout
    • User
      • getUser
        GET
      • Get Public User
        GET
      • Update User
        PUT
      • GetAllUser
        GET
    • Feedback
      • createfeedback
    • Blog
      • Blog
      • Get Blog
      • like blog
  1. User

Update User

Developing
PUT
v1/api/user
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'http://localhost:3200/v1/api/user' \
--data-urlencode 'username=Kyaw Min Khant' \
--data-urlencode 'image_url=https://i.pinimg.com/564x/97/a0/ef/97a0eff3eb0fbbbbc0f71565caec94a9.jpg' \
--data-urlencode 'description=Alok ma lok Chin vuu'
Response Response Example
{
  "data": true,
  "msg": "string"
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/x-www-form-urlencoded
username
string 
optional
Example:
Kyaw Min Khant
image_url
string 
optional
Example:
https://i.pinimg.com/564x/97/a0/ef/97a0eff3eb0fbbbbc0f71565caec94a9.jpg
description
string 
optional
Example:
Alok ma lok Chin vuu

Responses

🟢200OK
application/json
Body
data
boolean 
required
msg
string 
required
Previous
Get Public User
Next
GetAllUser
Built with