List a project’s schedules
const url = 'https://api.sloose.com/orgs/org_9f3c/projects/b3f1c8a2/schedules';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”The org id the session was issued for. A token for one org can never read another.
Example
org_9f3cThe org id the session was issued for. A token for one org can never read another.
The project id.
Example
b3f1c8a2The project id.
Responses
Section titled “Responses”The project’s schedules.
object
Stored now, executed by the V2 server-side runner. Creating one does not run anything yet.
object
Five-field cron expression.
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.
The error envelope every non-2xx answer uses.
object
Human-readable explanation.
Machine-readable reason. Absent on a few legacy 400s.
Examplegenerated
{ "error": "example", "code": "example"}The bearer’s role is too low, or it was issued for a different org.
The error envelope every non-2xx answer uses.
object
Human-readable explanation.
Machine-readable reason. Absent on a few legacy 400s.
Examplegenerated
{ "error": "example", "code": "example"}No such project, or it is not visible to this session.
The error envelope every non-2xx answer uses.
object
Human-readable explanation.
Machine-readable reason. Absent on a few legacy 400s.
Examplegenerated
{ "error": "example", "code": "example"}