GET
/
api
/
projects
/
{projectName}
/
jobs
/
{jobName}
Gets info about specific job.
curl --request GET \
  --url http://127.0.0.1:47334/api/projects/{projectName}/jobs/{jobName}
{
  "name": "<string>",
  "query": "<string>",
  "if_query": "<string>",
  "start_at": "2023-11-07T05:31:56Z",
  "end_at": "2023-11-07T05:31:56Z",
  "schedule_str": "<string>"
}
The REST API endpoints can be used with MindsDB running locally at http://127.0.0.1:47334/api.

Path Parameters

projectName
string
required

The name of the project

jobName
string
required

The name of the job

Response

Job information

name
string
query
string

Tasks to be executed by the job

if_query
string

Optional. Condition to be fulfilled before the job executes

start_at
string<date-time>

Optional. Start date/time of the job

end_at
string<date-time>

Optional. End date/time of the job

schedule_str
string

Periodicity of the job (e.g. every 1 minute)