---
title: "Retrieve Option Default Visibility"
url: "https://earlyaccess.developers.bynder.com/apis/access-rights-and-options-api-1/versions/2cd9cb69-0956-4ff4-9774-4af770df8a45/paths/api-1-content-access-options-optionId--visibility/get"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/access-rights-and-options-api-1/versions/2cd9cb69-0956-4ff4-9774-4af770df8a45.md

# Retrieve Option Default Visibility

`GET` `/api/1/content-access/options/{optionId}/visibility`

## Path parameters

- `optionId` (string, required) - Option ID

## Responses

- `200` - Successful response
- `403` - Forbidden

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Access Rights and Options API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}/
    variables:
      your-bynder-domain:
        default: your-bynder-domainDefaultValue
  - url: https://DefaultParameterValue
    variables: {}
  - url: https://your-bynder-domainDefaultValue/v6/authentication/oauth2
    variables: {}
  - url: https://{your-auth-url}
    variables:
      your-auth-url:
        default: DefaultParameterValue
  - url: https://DefaultParameterValue
    variables: {}
  - url: https://your-bynder-domainDefaultValue/v6/authentication/oauth2
    variables: {}
paths:
  /api/1/content-access/options/{optionId}/visibility:
    get:
      parameters:
        - description: Option ID
          in: path
          name: optionId
          required: true
          schema:
            type: string
      responses:
        "200":
          content:
            application/json:
              schema:
                properties:
                  defaultVisibility:
                    type: boolean
                type: object
          description: Successful response
        "403":
          description: Forbidden
      summary: Retrieve Option Default Visibility
      tags:
        - Options
security:
  - OAuth2: []
  - permanentToken: []
components:
  securitySchemes:
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://DefaultParameterValue/
          scopes: {}
          tokenUrl: https://your-bynder-domainDefaultValue/v6/authentication/oauth2/token
        clientCredentials:
          scopes: {}
          tokenUrl: https://your-bynder-domainDefaultValue/v6/authentication/oauth2/token
      type: oauth2
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
```
