Short-Bitunix
HomeLink
Multiple Menus
  • Link1
  • Link2
HomeLink
Multiple Menus
  • Link1
  • Link2
  1. Auth
  • URL Collections
    • POST Url
      POST
    • GET Url
      GET
    • GET Url ID
      GET
    • UPDATE Url by ID
      PUT
    • DELETE Url by ID
      DELETE
    • GET QrCode by ID
      GET
  • Sources Bank
    • POST Sources
      POST
    • GET Sources
      GET
    • GET Sources by ID
      GET
    • PUT Sources by ID
      PUT
    • DELETE Sources by ID Copy
      DELETE
  • Medium Bank
    • POST Medium
      POST
    • GET Medium
      GET
    • GET Medium by ID
      GET
    • PUT Medium by ID
      PUT
    • DELETE Medium by ID Copy
      DELETE
  • Partner Code Bank
    • POST VipCodes
      POST
    • GET VipCodes
      GET
    • GET VipCodes by ID
      GET
    • PUT VipCodes by ID
      PUT
    • DELETE VipCodes by ID Copy
      DELETE
  • Tag Bank
    • POST Tags
    • GET Tags
    • GET Tags by ID
    • PUT Tags by ID
    • DELETE Tags by ID
  • Analytics
    • GET All clicks URL
    • GET spesific shrtlink analytics
    • GET clicks from ID
    • GET All clicks URL
    • GET All clicks countries
    • GET All clicks cities
    • GET All clicks regions
    • GET All clicks continents
    • GET All clicks devices
    • GET All clicks browsers
    • GET All clicks source
    • GET All clicks medium
    • GET All clicks campaign
    • GET All clicks term
    • GET All clicks content
  • Auth
    • POST Register
      POST
    • POST Login
      POST
    • PUT Change Name User Auth
      PUT
    • POST Logout
      POST
  • Untitled Endpoint
    GET
  1. Auth

PUT Change Name User Auth

Develop Env
http://localhost:8000/api/
Develop Env
http://localhost:8000/api/
PUT
update-name

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params
Authorization
string 
optional
Example:
Bearer {{user_token}}

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://localhost:8000/api/update-name' \
--header 'Authorization: Bearer {{user_token}}'

Responses

🟢200Success
application/json
Body
status_code
integer 
required
data
object 
required
id
integer 
required
name
string 
required
email
string 
required
email_verified_at
null 
required
created_at
string 
required
updated_at
string 
required
message
string 
required
Example
{
    "status_code": 200,
    "data": {
        "id": 1,
        "name": "NewName",
        "email": "johndoe@example.com",
        "email_verified_at": null,
        "created_at": "2025-03-13T08:44:50.000000Z",
        "updated_at": "2025-03-13T08:50:23.000000Z"
    },
    "message": "Name updated successfully!"
}
Modified at 2025-03-13 09:23:50
Previous
POST Login
Next
POST Logout
Built with