> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

# UpdateAccountSettings

# Package: socialMedia

# Namespace: AccountService

# Method link: https://dev.wix.com/docs/api-reference/business-management/marketing/social-media/account-v1/update-account-settings.md

## Permission Scopes:
Manage Social Posts: SCOPE.PROMOTE.MANAGE-SOCIAL-POSTS

## Introduction

Updates the settings for a connected social channel account, such as the default page, board, or account to publish to.

---

## REST API

### Schema

```
 Method: updateAccountSettings
 Description: Updates the settings for a connected social channel account, such as the default page, board, or account to publish to.
 URL: https://www.wixapis.com/social-publisher/v1/{channelName}/settings
 Method: PATCH
 Method parameters:
    - ONE-OF: 
     - name: facebook | type: FacebookSettings | description:   
        - name: defaultPageId | type: string | description:   | validation: maxLength 50
     - name: linkedin | type: LinkedinSettings | description:   
        - name: defaultChannelId | type: string | description:   | validation: maxLength 50
     - name: instagram | type: InstagramSettings | description:   
        - name: defaultAccountId | type: string | description:   | validation: maxLength 50
     - name: pinterest | type: PinterestSettings | description:   
        - name: defaultBoardId | type: string | description:   | validation: maxLength 128
     - name: gbp | type: GBPSettings | description:   
        - name: defaultLocationId | type: string | description:   | validation: maxLength 50
     - name: tiktok | type: TikTokSettings | description:   
        - name: defaultAccountId | type: string | description:   | validation: maxLength 50
 Return type: UpdateAccountSettingsResponse
  EMPTY-OBJECT {}


```

---

## JavaScript SDK

### Schema

```
 Method: wixClientAdmin.promoteGrowthToolsPublisher.accounts.updateAccountSettings(channelName, options)
 Description: Updates the settings for a connected social channel account, such as the default page, board, or account to publish to.
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  channelName
 Method parameters: 
   param name: channelName | type: ChannelName | description: Supported social channel. | required: true 
      - enum:
           INSTAGRAM - 
           FACEBOOK - 
           YOUTUBE - 
           LINKEDIN - 
           TWITTER - 
           PINTEREST - 
           GBP - Google Business Profile.
           TIKTOK - 
   param name: options | type: UpdateAccountSettingsOptions  none | required: true 
    - ONE-OF: - required: true
     - name: facebook | type: FacebookSettings | description:   
        - name: defaultPageId | type: string | description:   | validation: maxLength 50
     - name: linkedin | type: LinkedinSettings | description:   
        - name: defaultChannelId | type: string | description:   | validation: maxLength 50
     - name: instagram | type: InstagramSettings | description:   
        - name: defaultAccountId | type: string | description:   | validation: maxLength 50
     - name: pinterest | type: PinterestSettings | description:   
        - name: defaultBoardId | type: string | description:   | validation: maxLength 128
     - name: gbp | type: GBPSettings | description:   
        - name: defaultLocationId | type: string | description:   | validation: maxLength 50
     - name: tiktok | type: TikTokSettings | description:   
        - name: defaultAccountId | type: string | description:   | validation: maxLength 50
 Return type: PROMISE<UpdateAccountSettingsResponse>
  EMPTY-OBJECT {}


```

### Examples

### updateAccountSettings
```javascript
import { accounts } from '@wix/promote-growth-tools-publisher';

async function updateAccountSettings(channelName,options) {
  const response = await accounts.updateAccountSettings(channelName,options);
};
```

### updateAccountSettings (with elevated permissions)
```javascript
import { accounts } from '@wix/promote-growth-tools-publisher';
import { auth } from '@wix/essentials';

async function myUpdateAccountSettingsMethod(channelName,options) {
  const elevatedUpdateAccountSettings = auth.elevate(accounts.updateAccountSettings);
  const response = await elevatedUpdateAccountSettings(channelName,options);
}
```

### updateAccountSettings (self-hosted)
Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md).

```javascript
import { createClient } from '@wix/sdk';
import { accounts } from '@wix/promote-growth-tools-publisher';
// Import the auth strategy for the relevant access type
// Import the relevant host module if needed

const myWixClient = createClient ({
  modules: { accounts },
  // Include the auth strategy and host as relevant
});


async function updateAccountSettings(channelName,options) {
  const response = await myWixClient.accounts.updateAccountSettings(channelName,options);
};
```

---