User Change Push Name
Update the display name (push name) shown to others in WhatsApp
POST
/user/pushname
curl \
--request POST 'http://localhost:3000/user/pushname' \
--user "username:password" \
--header "Content-Type: application/json" \
--data '{"push_name":"John Doe"}'
Request examples
{
"push_name": "John Doe"
}
Response examples (200)
{
"code": "SUCCESS",
"message": "Success",
"results": "string"
}
Response examples (400)
{
"code": 400,
"message": "field cannot be blank",
"results": {}
}
Response examples (500)
{
"code": "INTERNAL_SERVER_ERROR",
"message": "you are not loggin",
"results": {}
}