> ## Documentation Index
> Fetch the complete documentation index at: https://connect.trypost.it/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Assign social set

> Move a social account into a set, or ungroup it.

<ParamField path="id" type="string" required>
  Social account UUID.
</ParamField>

<ParamField body="set_id" type="string">
  Set UUID on this account, or `null` to ungroup.
</ParamField>

Returns the updated [social account](/docs/api-reference/social-accounts/list).

<RequestExample>
  ```bash theme={null}
  curl -X PUT https://connect.trypost.it/api/social-accounts/b2c3d4e5-f6a7-8b9c-0d1e-2f3a4b5c6d7e/set \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{"set_id":"00000000-0000-0000-0000-000000000000"}'
  ```
</RequestExample>
