Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 8.26 KB

listjobsresponse.md

File metadata and controls

11 lines (8 loc) · 8.26 KB

ListJobsResponse

Fields

Field Type Required Description Example
content_type str ✔️ HTTP response content type for this operation
status_code int ✔️ HTTP response status code for this operation
raw_response requests.Response ✔️ Raw HTTP response; suitable for custom response parsing
jobs_response Optional[models.JobsResponse] List all the Jobs by connectionId. {
"next": "https://api.airbyte.com/v1/jobs?limit=5\u0026offset=10",
"previous": "https://api.airbyte.com/v1/jobs?limit=5\u0026offset=0",
"data": [
{
"id": "18dccc91-0ab1-4f72-9ed7-0b8fc27c5826",
"status": "running",
"jobType": "sync",
"startTime": "2023-03-25T01:30:50Z"
}
]
}