# Get watermark configuration

URL: /en/docs/api/v1/watermark/get
Last Updated: 2026-07-30T21:15:44.985Z

## Description
No description available.

## Available Actions
- Execute GET request
- View request parameters
- View response schema
- Get code examples
- Navigate to related topics
- View step-by-step instructions
- Get best practices

## Content
### GET /api/v1/watermark

**Get watermark configuration**

Retrieve the current watermark configuration for the authenticated tenant.

**Authentication:** Bearer token (`Authorization: Bearer <token>`)

**Responses:**

- `200` - Watermark configuration retrieved successfully
  - `enabled` (boolean): Whether watermarking is enabled for the tenant.
  - `text` (string): Primary watermark text displayed in the document.
  - `position` (enum: center | top-left | top-right | bottom-left | bottom-right): Base placement for the watermark block.
  - `opacity` (number): Opacity value for the rendered watermark text.
  - `size` (integer): Font size used for watermark text.
  - `color` (string): Text color provided as a hex RGB value.
  - `rotation` (integer): Rotation angle applied to the watermark text block.
- `401` - Unauthorized
- `403` - Forbidden - Admin role required

