Skip to content

List a project’s schedules

GET
/orgs/{org}/projects/{id}/schedules
curl --request GET \
--url https://api.sloose.com/orgs/org_9f3c/projects/b3f1c8a2/schedules \
--header 'Authorization: Bearer <token>'

Every schedule attached to the project.

Stored, not run. Schedules are persisted so a project can carry them, but the server-side runner that executes them is V2. Creating one today changes nothing about when imports happen.

org
required

The org id the session was issued for. A token for one org can never read another.

string
Example
org_9f3c

The org id the session was issued for. A token for one org can never read another.

id
required

The project id.

string
Example
b3f1c8a2

The project id.

The project’s schedules.

Media typeapplication/json
object
schedules
required
Array<object>

Stored now, executed by the V2 server-side runner. Creating one does not run anything yet.

object
id
required
string
orgId
required
string
projectId
required
string
name
required
string
cron
required

Five-field cron expression.

string
timezone
required
string
enabled
required
boolean
sourceConfig
required
object | null
createdByUserId
required
string | null
lastRunAt
required
string | null
nextRunAt
required
string | null
createdAt
required
string
updatedAt
required
string
Examplegenerated
{
"schedules": [
{
"id": "example",
"orgId": "example",
"projectId": "example",
"name": "example",
"cron": "example",
"timezone": "example",
"enabled": true,
"sourceConfig": "example",
"createdByUserId": "example",
"lastRunAt": "example",
"nextRunAt": "example",
"createdAt": "example",
"updatedAt": "example"
}
]
}

No bearer, or one that is expired, revoked or no longer resolves to a member.

Media typeapplication/json

The error envelope every non-2xx answer uses.

object
error
required

Human-readable explanation.

string
code

Machine-readable reason. Absent on a few legacy 400s.

string
key
additional properties
Examplegenerated
{
"error": "example",
"code": "example"
}

The bearer’s role is too low, or it was issued for a different org.

Media typeapplication/json

The error envelope every non-2xx answer uses.

object
error
required

Human-readable explanation.

string
code

Machine-readable reason. Absent on a few legacy 400s.

string
key
additional properties
Examplegenerated
{
"error": "example",
"code": "example"
}

No such project, or it is not visible to this session.

Media typeapplication/json

The error envelope every non-2xx answer uses.

object
error
required

Human-readable explanation.

string
code

Machine-readable reason. Absent on a few legacy 400s.

string
key
additional properties
Examplegenerated
{
"error": "example",
"code": "example"
}