General Information
Policy Type
Endpoints
List Policies
Add Policy
Update Policy
Delete Policy
List Policies
Endpoint
Request
Headers
| Header | Value |
|---|---|
| Authorization | Bearer {token} |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| projectName | string | Yes | Project name |
| apiProxyName | string | Yes | API Proxy name |
Response
Success Response (200 OK)
cURL Example
Add Policy
Endpoint
Request
Headers
| Header | Value |
|---|---|
| Authorization | Bearer {token} |
| Content-Type | application/json |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| projectName | string | Yes | Project name |
| apiProxyName | string | Yes | API Proxy name |
| policyName | string | Yes | Policy name |
Request Body
Full JSON Body Example
Request Body Fields
operationMetadata
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| targetScope | string | Yes | - | Policy scope: ALL or ENDPOINT |
| targetEndpoint | string | No* | - | Endpoint path (required if targetScope=ENDPOINT) |
| targetEndpointHTTPMethod | string | No* | - | HTTP method (required if targetScope=ENDPOINT) |
| targetPipeline | string | Yes | - | Pipeline: REQUEST, RESPONSE, or ERROR |
| deploy | boolean | No | true | Whether to deploy after adding policy |
| deployTargetEnvironmentNameList | array | No | [] | List of environment names to deploy to |
| order | integer | No | null | Policy execution order (starts from 1) |
ALL- Policy applies to all endpointsENDPOINT- Policy applies only to specified endpoint
REQUEST- Executes in request pipelineRESPONSE- Executes in response pipelineERROR- Executes in error pipeline
GET,POST,PUT,DELETE,PATCH,OPTIONS,HEAD
policy
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| type | string | Yes | - | Policy type: policy-auth-oauth2 |
| description | string | No | - | Policy description |
| active | boolean | No | true | Whether policy is active |
| tokenNeverExpires | boolean | No | true | Whether token never expires |
| tokenExpiresInAmount | long | No* | - | Token expiration amount (required if tokenNeverExpires=false) |
| tokenExpiresInUnit | string | No* | - | Token expiration unit (required if tokenNeverExpires=false) |
| refreshTokenAllowed | boolean | No | false | Allow refresh tokens |
| refreshTokenCount | integer | No | - | Maximum number of refresh tokens per user |
| refreshTokenExpiresInAmount | long | No | - | Refresh token expiration amount |
| refreshTokenExpiresInUnit | string | No | - | Refresh token expiration unit |
| allowUrlParameters | boolean | No | false | Allow token in URL parameters |
| managedFromThisPolicy | boolean | No | true | Token managed from this policy |
| grantType | string | No | PASSWORD | Grant type for token issuance |
| deletePrevious | boolean | No | false | Delete previous tokens when issuing new token |
EnumTimeUnit
MILLI_SECONDS- MillisecondsSECONDS- SecondsMINUTES- MinutesHOURS- HoursDAYS- DaysWEEKS- WeeksMONTHS- MonthsYEARS- Years
EnumPolicyAuthenticationGrantType
PASSWORD- Password grant type (username/password)CLIENT_CREDENTIALS- Client credentials grant type (client_id/client_secret)
Note
- If
tokenNeverExpires: false, bothtokenExpiresInAmountandtokenExpiresInUnitare required. refreshTokenCountlimits the number of active refresh tokens per user.- When
deletePrevious: true, issuing a new token deletes previous tokens for the same user.
Response
Success Response (200 OK)
cURL Example
Update Policy
Endpoint
Request
Headers
| Header | Value |
|---|---|
| Authorization | Bearer {token} |
| Content-Type | application/json |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| projectName | string | Yes | Project name |
| apiProxyName | string | Yes | API Proxy name |
| policyName | string | Yes | Policy name |
Request Body
Full JSON Body Example
Response
Success Response (200 OK)
cURL Example
Delete Policy
Endpoint
Request
Headers
| Header | Value |
|---|---|
| Authorization | Bearer {token} |
| Content-Type | application/json |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| projectName | string | Yes | Project name |
| apiProxyName | string | Yes | API Proxy name |
| policyName | string | Yes | Policy name |
Request Body
Full JSON Body Example
Request Body Fields
operationMetadata
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| targetScope | string | Yes | - | Policy scope: ALL or ENDPOINT |
| targetPipeline | string | Yes | - | Pipeline: REQUEST, RESPONSE, or ERROR |
| deploy | boolean | No | false | Whether to deploy after deletion |
Response
Success Response (200 OK)
cURL Example
Notes and Warnings
-
Token Expiration:
- When
tokenNeverExpires: false, providetokenExpiresInAmountandtokenExpiresInUnit - When
tokenNeverExpires: true, tokens never expire (use with caution)
- When
-
Refresh Tokens:
- When
refreshTokenAllowed: true, clients can refresh expired access tokens refreshTokenCountlimits concurrent refresh tokens per user- Refresh tokens have separate expiration settings
- When
-
Grant Types:
PASSWORD- Username/password authentication (Resource Owner Password Credentials)CLIENT_CREDENTIALS- Client ID/client secret authentication (for service-to-service)
-
Delete Previous:
- When
deletePrevious: true, issuing a new token invalidates previous tokens for the same user - When
deletePrevious: false, multiple tokens can be active for the same user
- When
-
URL Parameters: When
allowUrlParameters: true, tokens can be passed in URL (less secure, not recommended) -
Managed Policy: When
managedFromThisPolicy: true, tokens are issued and managed by this policy - OAuth2 Standard: This policy implements OAuth2 specification for token management
-
Deployment: Policy changes require deployment to take effect. Set
deploy: trueor deploy manually.
Related Documentation
- List Policies - List all policies
- Add Policy - General policy addition guide
- Update Policy - General policy update guide
- Delete Policy - General policy deletion guide

