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

Get a tag

GET
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}

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 GET 'https://app.onlysocial.io/os/api/<workspaceUuid>/tags/{tagUuid}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{
    "id": 1,
    "uuid": "2323e1eb-b3a6-4183-990d-4d5afea04835",
    "name": "motivation",
    "hex_color": "#60a5fa"
}
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
Modified at 2024-06-28 15:52:36
Previous
List Tags
Next
Create a tag
Built with