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

# Manage Secrets

Manage client secrets for an app.

## Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                                                                                                                                                                       |
  | --------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Client ID       | Client ID.                                                                                                                                                                                                                        |
  | Mode            | Operation to perform:<br />  \* `replace` - Replace existing secrets with a new generated<br />secret<br />  \* `create` - Add a new secret, preserving existing secrets<br />  \* `delete` - Remove an existing secret by value. |
  | Organization ID | Unique identifier for an organization.                                                                                                                                                                                            |
  | Secret          | The secret on which to enact the operation.                                                                                                                                                                                       |
</div>

## Example Output

```json theme={"dark"}
{
	"data": {
		"attributes": {
			"access_token_ttl_seconds": 3600,
			"client_id": "941b423a-e0a0-4a33-a7ca-dd9e9e6bd8cf",
			"client_secret": "my-secret",
			"context": "tenant",
			"is_confidential": true,
			"is_public": false,
			"name": "My App",
			"org_public_id": "1892a7fe-0da0-4000-8aec-85cba6bc3901",
			"redirect_uris": [
				"https://example.com/callback"
			],
			"scopes": [
				"A"
			]
		},
		"id": "1892a7fe-0da0-4000-8fad-df0277bd3f01",
		"type": "string"
	},
	"jsonapi": {
		"version": "1.0"
	},
	"links": {
		"self": "https://example.com/api/this_resource"
	}
}
```

## Workflow Library Example

[Manage Secrets with Snyk and Send Results Via Email](https://library.blinkops.com/workflows/manage-secrets-with-snyk-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/manage-secrets-with-snyk-and-send-results-via-email/canvas" />
</div>
