Request
Provide your bearer token in the Authorization
 header when making requests to protected resources. Example:Authorization: Bearer ********************
 Request Code Samples
curl --location --request GET 'https://app.onlysocial.io/os/api/<workspaceUuid>/tags' \
--header 'Authorization: Bearer <token>'
Responses
application/json {
    "data": [
        {
            "id": 3,
            "uuid": "a09367a5-dfc1-43d7-9557-70eb93e01e01",
            "name": "news",
            "hex_color": "#38bdf8"
        },
        {
            "id": 2,
            "uuid": "f9288040-0d50-4e40-83d6-10ef6dd31d9d",
            "name": "release",
            "hex_color": "#111827"
        },
        {
            "id": 1,
            "uuid": "2323e1eb-b3a6-4183-990d-4d5afea04835",
            "name": "motivation",
            "hex_color": "#60a5fa"
        }
    ]
}
Modified at 2024-06-28 13:19:33