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 (must be REST type) |
Request Body
Full JSON Body Example
Request Body Fields
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| name | string | Yes | - | Endpoint path/name (must be unique with httpMethod) |
| description | string | No | - | Endpoint description |
| httpMethod | string | Yes | - | HTTP method for the endpoint |
| backendResourceUrl | string | Yes | - | Backend resource URL |
| backendHttpMethod | string | Yes | - | HTTP method for backend call |
EnumHttpRequestMethod
GET- GET methodPOST- POST methodPUT- PUT methodDELETE- DELETE methodPATCH- PATCH methodOPTIONS- OPTIONS methodHEAD- HEAD methodTRACE- TRACE methodALL- All methods
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
- API Proxy is not REST type (SOAP proxies don’t support manual endpoint creation)
- Endpoint name and HTTP method combination already exists
- Missing required fields (name, httpMethod, backendResourceUrl, backendHttpMethod)
- Invalid HTTP method values
Error Response (401 Unauthorized)
Error Response (404 Not Found)
cURL Example
Example 1: Create GET Endpoint
Example 2: Create POST Endpoint
Example 3: Create Endpoint with Different Backend Method
Permissions
User must haveAPI_MANAGEMENT + MANAGE permission in the project.
Notes and Warnings
- REST Only: Endpoints can only be added to REST API proxies. SOAP endpoints are defined in the WSDL
- Unique Combination: The combination of
nameandhttpMethodmust be unique within the API proxy - Default Active: New endpoints are created with
active: trueby default - Backend URL: The
backendResourceUrlcan be a relative path or absolute URL
Related Documentation
- List Endpoints - List all endpoints
- Get Endpoint - Get endpoint details
- Update Endpoint - Update an endpoint
- Delete Endpoint - Delete an endpoint

