HDP Server API
Create task
Schedule a new task
Creates a new Data Processor task of verified custom module execution with Atlantic submission and on-chain commitment.
Endpoint
Request Body
Field | Type | Description |
---|---|---|
destination_chain_id | integer | The chain ID where the task will be proven |
webhook_url | string | Optional URL to receive task completion/failure notifications |
input | object | The task input parameters |
input.params | array | Array of parameters for the contract execution |
input.compiled_class | object | The custom module compiled contract class |
input.entry_points_by_type | object | Entry points configuration for different types |
input.entry_points_by_type.EXTERNAL | array | Array of external entry points |
input.entry_points_by_type.L1_HANDLER | array | Array of L1 handler entry points |
input.entry_points_by_type.CONSTRUCTOR | array | Array of constructor entry points |
Example Request
Response
Success Response (200 OK)
Error Response (401 Unauthorized)
Error Responses
- 400 Bad Request: Invalid request parameters
- 401 Unauthorized: Missing or invalid authentication
- 429 Too Many Requests: Rate limit exceeded
- 500 Internal Server Error: Server-side error
Webhook Notifications
When a webhook_url
is provided, the service will send a POST request to the specified URL when the task completes or fails. The webhook payload will be sent as JSON.
Success Webhook Payload
Failure Webhook Payload
Webhook Payload Fields
Field | Type | Description |
---|---|---|
status | string | Final status of the task |
task_id | string | The unique identifier of the task |
timestamp | string | ISO 8601 timestamp of the status update |
transaction_hash | string | Hash of the transaction (only present in success payload) |
error | string | Error message (only present in failure payload) |
Notes
- The
compiled_class
field should contain the complete compiled contract class data from the custom module - Entry points are used to define the contract’s interface and execution points
- The
selector
field in entry points is a hash of the encoded function name - Builtins specify the required built-in functions for the contract execution
- The
uuid
in the response can be used to check the task status using the status endpoint - Webhook notifications are sent asynchronously after task completion or failure
- The webhook endpoint should be publicly accessible and respond with a 2xx status code