Flexible export to HTTP REST APIs with support for multiple authentication methods and JSON payloads. Ideal for integrating with web services, custom endpoints, and third-party APIs.
open_in_new
REST API Best Practices
Learn about RESTful design principles
Configuration Parameters
| Parameter | Required | Type | Default | Description |
|---|---|---|---|---|
| Uri | Yes | string | - | Target HTTP endpoint URL for data submission. |
| AuthenticationType | No | string | (none) | Authentication type: Basic, Token, APIKey, or none. |
| Username | No | string | (empty) | Username for Basic authentication. |
| Password | No | string | (empty) | Password for Basic authentication. |
| Token | No | string | (empty) | Bearer token for token-based authentication. |
| APIKey | No | string | (empty) | API key for API key authentication. |
Internal Behavior
HTTP Communication
- POST Method: Each payload is sent via HTTP POST with
application/json - JSON Serialization: Payloads are serialized using Proxus JSON context
- Error Handling: Non-2xx responses raise an integration error
Performance Features
- Authentication: Supports
Basic,Token(Bearer), andAPIKeyheaders.