> 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

# GetPointOfViewOptions

# Package: marketingPlan

# Namespace: MarketingSettingsService

# Method link: https://dev.wix.com/docs/api-reference/business-management/marketing/marketing-plan/marketing-settings-v1/get-point-of-view-options.md

## Permission Scopes:
Manage Marketing Plans: SCOPE.PROMOTE.MANAGE-MARKETING-PLAN

## Introduction

Retrieves the list of point-of-view options a site can choose from when configuring marketing settings.

---

## REST API

### Schema

```
 Method: getPointOfViewOptions
 Description: Retrieves the list of point-of-view options a site can choose from when configuring marketing settings.
 URL: https://www.wixapis.com/promote/marketing-plan-service/v1/marketing-settings/point-of-view-options
 Method: GET
 Return type: GetPointOfViewOptionsResponse
  - name: options | type: array<PointOfViewOption> | description: Selectable point-of-view options, ordered for display.  | validation: minItems 0, maxItems 10
     - name: pointOfViewKey | type: PointOfView | description: The enum value identifying this point of view.  
         - enum:
         -     FIRST_PERSON: Uses "I", "we", "my", "our".
         -     SECOND_PERSON: Uses "you", "your".
         -     THIRD_PERSON: Uses "they", "their", or the business name.
     - name: displayName | type: string | description: Localized display name for this point of view in the account's language.  | validation: maxLength 100


```

### Examples

### Get point of view options
Retrieve the narrative point-of-view options available for generated content.

```curl
curl -X GET \
'https://www.wixapis.com/promote/marketing-plan-service/v1/marketing-settings/point-of-view-options' \
-H 'Authorization: <AUTH>'
```

---

## JavaScript SDK

### Schema

```
 Method: wixClientAdmin.promoteGrowthToolsMarketingPlan.marketingSettings.getPointOfViewOptions()
 Description: Retrieves the list of point-of-view options a site can choose from when configuring marketing settings.
 Return type: PROMISE<GetPointOfViewOptionsResponse>
  - name: options | type: array<PointOfViewOption> | description: Selectable point-of-view options, ordered for display.  | validation: minItems 0, maxItems 10
     - name: pointOfViewKey | type: PointOfView | description: The enum value identifying this point of view.  
         - enum:
         -     FIRST_PERSON: Uses "I", "we", "my", "our".
         -     SECOND_PERSON: Uses "you", "your".
         -     THIRD_PERSON: Uses "they", "their", or the business name.
     - name: displayName | type: string | description: Localized display name for this point of view in the account's language.  | validation: maxLength 100


```

### Examples

### Get point of view options
```javascript
import { marketingSettings } from "@wix/promote-growth-tools-marketing-plan";

async function getPointOfViewOptions() {
  const response = await marketingSettings.getPointOfViewOptions();
}

/* Promise resolves to:
 * {
 *   "options": [
 *     {
 *       "pointOfViewKey": "FIRST_PERSON",
 *       "displayName": "First person (we, our)"
 *     },
 *     {
 *       "pointOfViewKey": "SECOND_PERSON",
 *       "displayName": "Second person (you, your)"
 *     },
 *     {
 *       "pointOfViewKey": "THIRD_PERSON",
 *       "displayName": "Third person (they, the brand)"
 *     }
 *   ]
 * }
 */

```

### getPointOfViewOptions (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 { marketingSettings } from '@wix/promote-growth-tools-marketing-plan';
// Import the auth strategy for the relevant access type
// Import the relevant host module if needed

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


async function getPointOfViewOptions() {
  const response = await myWixClient.marketingSettings.getPointOfViewOptions();
};
```

---