Short-Bitunix
HomeLink
Multiple Menus
  • Link1
  • Link2
HomeLink
Multiple Menus
  • Link1
  • Link2
  1. Tag Bank
  • 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
      POST
    • GET Tags
      GET
    • GET Tags by ID
      GET
    • PUT Tags by ID
      PUT
    • DELETE Tags by ID
      DELETE
  • 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 Login
    • PUT Change Name User Auth
    • POST Logout
  • Untitled Endpoint
    GET
  1. Tag Bank

PUT Tags by ID

Develop Env
http://localhost:8000/api/
Develop Env
http://localhost:8000/api/
PUT
api/tags/1

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
object {0}
Example
{
  "name": "linkedin"
}

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/api/tags/1' \
--header 'Content-Type: application/json' \
--data-raw '{
  "name": "linkedin"
}'

Responses

🟢200Success
application/json
Body
status
integer 
required
data
object 
required
id
integer 
required
name
string 
required
created_at
string 
required
updated_at
string 
required
message
string 
required
Example
{
    "data": {
        "name": "twitter",
        "updated_at": "2025-03-03T18:43:22.000000Z",
        "created_at": "2025-03-03T18:43:22.000000Z",
        "id": 1
    },
    "message": "Source created successfully"
}
Modified at 2025-03-04 09:30:39
Previous
GET Tags by ID
Next
DELETE Tags by ID
Built with