OnlySocial
  1. Accounts
OnlySocial
  • 🐶 OnlySocial API Walk through
  • Only Social
    • Accounts
      • List Accounts
        GET
      • Get an account
        GET
    • Media
      • List media files
      • Get a media file
      • Upload a media file
      • Delete a media file
    • Tags
      • List Tags
      • Get a tag
      • Create a tag
      • Delete a tag
      • Update a tag
    • 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. Accounts

List Accounts

GET
https://app.onlysocial.io/os/api/{workspaceUuid}/accounts

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>

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 GET 'https://app.onlysocial.io/os/api/<workspaceUUid>/accounts'

Responses

🟢200OK
application/json
Body
object {0}
Example
{
    "data": [
        {
            "id": 6,
            "uuid": "123e4567-e89b-12d3-a456-426614174000",
            "name": "Dima Botezatu",
            "username": "lao9s",
            "image": "https://app.onlysocial.io/avatar/dima.jpg",
            "provider": "instagram",
            "data": {},
            "authorized": true,
            "created_at": "2024-03-30 10:00:00"
        },
        {
            "id": 5,
            "uuid": "7eafa7f6-51d7-4597-a775-702a9b8bd884",
            "name": "Dima Botezatu",
            "username": "lao9s",
            "image": "https://app.onlysocial.io/avatar/dima.jpg",
            "provider": "tiktok",
            "data": {
                "union_id": "14754564",
                "is_private": false,
                "duet_disabled": false,
                "privacy_levels": [
                    "PUBLIC_TO_EVERYONE",
                    "MUTUAL_FOLLOW_FRIENDS",
                    "SELF_ONLY"
                ],
                "stitch_disabled": false,
                "comment_disabled": false,
                "max_video_post_duration_sec": 600
            },
            "authorized": true,
            "created_at": "2024-03-29 14:47:32"
        },
        {
            "id": 4,
            "uuid": "aa4d3505-05c9-401f-9b8d-9a633b82c768",
            "name": "Dima Botezatu",
            "username": "lao9s",
            "image": "https://app.onlysocial.io/avatar/dimap.jpg",
            "provider": "pinterest",
            "data": {
                "relationships": {
                    "boards": [
                        {
                            "id": "176378040495433160",
                            "name": "Local"
                        }
                    ]
                }
            },
            "authorized": true,
            "created_at": "2024-03-29 14:42:37"
        },
        {
            "id": 3,
            "uuid": "ed1d7f93-ebca-4217-957c-a25fbb2c1075",
            "name": "Dima Botezatu",
            "username": "BotezatuDima",
            "image": "https://app.onlysocial.io/avatar/dima.jpg",
            "provider": "twitter",
            "data": null,
            "authorized": true,
            "created_at": "2024-03-29 09:55:31"
        },
        {
            "id": 2,
            "uuid": "cfbdc3eb-22cb-4d15-b2a0-63d5fcd5bd92",
            "name": "Dima Botezatu",
            "username": "dimabotezatu",
            "image": null,
            "provider": "linkedin",
            "data": null,
            "authorized": true,
            "created_at": "2024-03-29 09:49:22"
        },
        {
            "id": 1,
            "uuid": "85347d5e-9724-4cb6-b91c-82d6d6d4e992",
            "name": "Only Social",
            "username": "onlysocial",
            "image": "https://app.onlysocial.io/avatar/onlysocial.jpg",
            "provider": "facebook_page",
            "data": {
                "suffix": {
                    "value": "Page",
                    "edited": false
                }
            },
            "authorized": true,
            "created_at": "2024-03-27 11:30:45"
        }
    ]
}
🟠401Unauthenticated
🟠404Not Found
🟠403Forbidden
Modified at 2024-06-28 11:35:44
Previous
🐶 OnlySocial API Walk through
Next
Get an account
Built with