Get job webhook deliveries
Authorization
bearerAuth API key authentication. Include your API key in the Authorization header as Bearer rf_your_key.
In: header
Path Parameters
Job ID
Response Body
application/json
application/problem+json
curl -X GET "http://localhost:8080/api/v1/jobs/string/webhooks"{
"deliveries": [
{
"attempt_number": 0,
"created_at": "string",
"delivered_at": "string",
"error_message": "string",
"event_type": "string",
"id": "string",
"max_attempts": 0,
"response_time_ms": 0,
"status": "string",
"status_code": 0,
"url": "string",
"webhook_id": "string"
}
],
"job_id": "string"
}{
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "string",
"message": "string",
"value": null
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example"
}Get job results in various formats GET
Returns job results in the requested format. Supported formats via Accept header or ?format= query parameter: - **application/json** (default): JSON array of results - **application/x-ndjson**: Newline-delimited JSON (one result per line) - **application/yaml**: YAML formatted results Query parameters: - **merge=true**: Merge all page results into a single array - **format=json|jsonl|yaml**: Override content type Example: ```bash # JSON format (default) curl -H "Authorization: Bearer rf_your_key" \ https://api.refyne.dev/api/v1/jobs/{id}/results # JSONL format with merge curl -H "Authorization: Bearer rf_your_key" \ "https://api.refyne.dev/api/v1/jobs/{id}/results?format=jsonl&merge=true" ```
List jobs GET
Next Page