# HttpTrigger
## Properties
**route_path** | **String** | The URL route path that will trigger this endpoint (e.g., 'api/myendpoint'). Must NOT start with a /. |
**static_asset_config** | Option<[**serde_json::Value**](serde_json::Value.md)> | Configuration for serving static assets (s3 bucket, storage path, filename) | [optional]
**http_method** | [**models::HttpMethod**](HttpMethod.md) | |
**authentication_resource_path** | Option<**String**> | Path to the resource containing authentication configuration (for api_key, basic_http, custom_script, signature methods) | [optional]
**summary** | Option<**String**> | Short summary describing the purpose of this trigger | [optional]
**description** | Option<**String**> | Detailed description of what this trigger does | [optional]
**request_type** | [**models::HttpRequestType**](HttpRequestType.md) | |
**authentication_method** | [**models::AuthenticationMethod**](AuthenticationMethod.md) | |
**is_static_website** | **bool** | If true, serves static files from S3/storage instead of running a script |
**workspaced_route** | **bool** | If true, the route includes the workspace ID in the path |
**wrap_body** | **bool** | If true, wraps the request body in a 'body' parameter |
**raw_string** | **bool** | If true, passes the request body as a raw string instead of parsing as JSON |
**error_handler_path** | Option<**String**> | Path to a script or flow to run when the triggered job fails | [optional]
**error_handler_args** | Option<[**std::collections::HashMap<String, serde_json::Value>**](serde_json::Value.md)> | The arguments to pass to the script or flow | [optional]
**retry** | Option<[**models::Retry**](Retry.md)> | | [optional]
**path** | **String** | The unique path identifier for this trigger |
**script_path** | **String** | Path to the script or flow to execute when triggered |
**permissioned_as** | **String** | The user or group this trigger runs as (permissioned_as) |
**extra_perms** | **std::collections::HashMap<String, bool>** | Additional permissions for this trigger |
**workspace_id** | **String** | The workspace this trigger belongs to |
**edited_by** | **String** | Username of the last person who edited this trigger |
**edited_at** | **String** | Timestamp of the last edit |
**is_flow** | **bool** | True if script_path points to a flow, false if it points to a script |
**mode** | [**models::TriggerMode**](TriggerMode.md) | |
**labels** | Option<**Vec<String>**> | | [optional][default to []]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)