OnlySocial
  1. Tags
OnlySocial
  • 🐶 OnlySocial API Walk through
  • Only Social
    • Accounts
      • List Accounts
      • Get an account
    • Media
      • List media files
      • Get a media file
      • Upload a media file
      • Delete a media file
    • Tags
      • List Tags
        GET
      • Get a tag
        GET
      • Create a tag
        POST
      • Delete a tag
        DELETE
      • Update a tag
        PUT
    • Posts
      • List posts
      • Get a post
      • Create a post
      • Delete a post
      • Delete multiple post
      • Schedule a post
      • Add a post to Queue
      • Update a post
  1. Tags

Update a tag

PUT
https://app.onlysocial.io/os/api/{workspaceUuid}/tags/{tagUuid}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
workspaceUuid
string 
required
Example:
<workspaceUuid>
tagUuid
string 
required
Example:
{tagUuid}
Body Params multipart/form-data
name
string 
required
Example:
motivation
hex_color
string 
required
Example:
#60a5fa

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 -g --request PUT 'https://app.onlysocial.io/os/api/<workspaceUuid>/tags/{tagUuid}' \
--form 'name="motivation"' \
--form 'hex_color="#60a5fa"'

Responses

🟢200Success
application/json
Body
object {0}
Example
{
    "success": true
}
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🟠422Parameter Error
Modified at 2024-06-28 13:42:16
Previous
Delete a tag
Next
List posts
Built with