Endpoint
Authentication
Requires a Personal API Access Token.Header
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer | Yes |
| Content-Type | application/json | Yes |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| projectName | string | Yes | Project name |
| apiProxyName | string | Yes | API Proxy name |
Request Body
Full JSON Body Example
Request Body Fields
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| ntlmSettings | object | Yes | - | NTLM settings object (see fields below) |
| deploy | boolean | No | false | If true, deploy the API proxy after saving changes |
| deployTargetEnvironmentNameList | array[string] | No | [] | List of environment names to deploy to (required when deploy=true) |
ntlmSettings Fields
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| enabled | boolean | No | false | Enable/disable NTLM authentication |
| domain | string | No* | - | Windows domain name (required if enabled=true) |
| username | string | No* | - | Windows username (required if enabled=true) |
| password | string | No* | - | Windows password (required if enabled=true) |
| workstation | string | No | - | Workstation name (optional) |
Response
Success Response (200 OK)
deploy=true is specified:
Response Fields
| Field | Type | Description |
|---|---|---|
| success | boolean | Indicates if the request was successful |
| deploymentResult | object | Deployment result details (only present when deploy=true) |
| deploymentResult.deploymentResults | array | List of deployment results per environment |
| deploymentResult.deploymentResults[].environmentName | string | Name of the target environment |
| deploymentResult.deploymentResults[].success | boolean | Whether deployment to this environment succeeded |
Error Response (400 Bad Request)
Error Response (401 Unauthorized)
Error Response (404 Not Found)
cURL Example
Example 1: Enable NTLM Authentication
Example 2: Enable NTLM without Workstation
Example 3: Save and Deploy
Notes and Warnings
- Domain: Windows domain name (required when enabled=true)
- Username: Windows username (required when enabled=true)
- Password: Windows password (required when enabled=true, encrypted when stored)
- Workstation: Optional workstation name
- NTLM Protocol: Uses NTLM v1/v2 authentication
- Security: Password is encrypted using default encryption algorithm
- Deploy: When
deploy=true, the API proxy is automatically deployed to the specified environments after saving
Permissions
User must haveAPI_MANAGEMENT + MANAGE permission in the project.
Related Documentation
- Update mTLS Settings - Update mTLS settings
- Update Connection Settings - Update connection settings
- Get API Proxy - Get API proxy details

