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 |
|---|---|---|---|---|
| name | string | Yes | - | Endpoint path/name (used as identifier to find the endpoint) |
| httpMethod | string | Yes | - | HTTP method for the endpoint (used as identifier to find the endpoint) |
| description | string | No | - | Endpoint description |
| backendResourceUrl | string | No | - | Backend resource URL |
| backendHttpMethod | string | No | - | HTTP method for backend call |
name and httpMethod are required and used to identify the endpoint. Other fields are optional and only provided fields are updated.
EnumHttpRequestMethod
GET,POST,PUT,DELETE,PATCH,OPTIONS,HEAD,TRACE,ALL
Response
Success Response (200 OK)
Response Fields
| Field | Type | Description |
|---|---|---|
| success | boolean | Indicates if the request was successful |
Error Response (400 Bad Request)
Common Causes
- Missing
nameorhttpMethodfields - Endpoint with specified name and httpMethod does not exist
- Invalid field values
Error Response (401 Unauthorized)
Error Response (404 Not Found)
cURL Example
Example 1: Update Endpoint Description Only
Example 2: Update Backend URL
Example 3: Update Multiple Fields
Permissions
User must haveAPI_MANAGEMENT + MANAGE permission in the project.
Notes and Warnings
- Endpoint Identifier:
nameandhttpMethodare required and used to identify the endpoint to update - Partial Updates: Only provided fields (except
nameandhttpMethod) are updated. Omitted fields remain unchanged - Unique Combination: If updating
nameorhttpMethod, ensure the new combination doesn’t conflict with existing endpoints
Related Documentation
- List Endpoints - List all endpoints
- Get Endpoint - Get endpoint details
- Create Endpoint - Create a new endpoint
- Delete Endpoint - Delete an endpoint
- Update Endpoint Status - Enable/disable endpoint

