OnlySocial
  1. Groups
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
      • 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
        POST
      • Update a group
        PUT
      • Delete a Group
        DELETE
  1. Groups

Update a group

PUT
https://app.onlysocial.io/os/api/{workspaceUuid}/group/{id}/edit

Request

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

Body Params application/json

Example
{id: 12, name: "Group name", description: "sample description", account_ids: [1402, 1403]}

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 PUT 'https://app.onlysocial.io/os/api//group//edit' \
--header 'Content-Type: application/json' \
--data-raw '{id: 12, name: "Group name", description: "sample description", account_ids: [1402, 1403]}'

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2025-07-19 03:03:41
Previous
Create a group
Next
Delete a Group
Built with