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
      • Update a Media
    • 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
      • Approve a Post
    • Groups
      • Create a group
      • Update a group
      • Delete a Group
  1. Accounts

Get an account

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

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

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>/accounts/{accountUuid}'

Responses

🟢200Success
application/json
Body

Example
{
    "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"
}
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
Modified at 2024-06-28 15:53:53
Previous
List Accounts
Next
List media files
Built with