apikeys
jobs
- GETList all jobs
- POSTTries to create a new Job Definition
- GETReturns list of jobs that must be executed
- POSTMarks pending job execution as complete
- GETSend job executions over Server Sent Events
- GETReturns a list of executions for a job
- PATCHUpdate a job's muted status
- PATCHTemporary stops a job from running
- PATCHResumes job execution
- POSTImmediately triggers a job
- GETRetrieve a job by its ID
- DELRemoves schedule for a job and removes its execution logs
org
Retrieves a list of environments for the current org
curl --request GET \
--url https:/api.schedo.dev/api/org/environments
[
{
"created_at": "<string>",
"edges": {
"organization": [
{
"clerk_id": "<string>",
"edges": {
"api_keys": [
{
"created_at": "<string>",
"edges": {},
"environment_id": 123,
"id": 123,
"internal": true,
"key": "<string>",
"name": "<string>",
"organization_id": 123,
"revoked": true
}
]
},
"emails": [
"<string>"
],
"id": 123,
"name": "<string>",
"single_user_org": true
}
]
},
"id": 123,
"name": "<string>",
"organization_id": 123
}
]
Response
CreatedAt holds the value of the "created_at" field.
Edges holds the relations/edges for other nodes in the graph. The values are being populated by the EnvironmentQuery when eager-loading is set.
Organization that owns this environment
External Clerk organization ID
Edges holds the relations/edges for other nodes in the graph. The values are being populated by the OrgQuery when eager-loading is set.
APIKeys holds the value of the api_keys edge.
CreatedAt holds the value of the "created_at" field.
Edges holds the relations/edges for other nodes in the graph. The values are being populated by the ApiKeyQuery when eager-loading is set.
EnvironmentID holds the value of the "environment_id" field.
ID of the ent.
Internal holds the value of the "internal" field.
Key holds the value of the "key" field.
Name holds the value of the "name" field.
OrganizationID holds the value of the "organization_id" field.
Revoked holds the value of the "revoked" field.
List of organization emails
ID of the ent.
Organization name
SingleUserOrg holds the value of the "single_user_org" field.
ID of the ent.
Name holds the value of the "name" field.
OrganizationID holds the value of the "organization_id" field.
curl --request GET \
--url https:/api.schedo.dev/api/org/environments
[
{
"created_at": "<string>",
"edges": {
"organization": [
{
"clerk_id": "<string>",
"edges": {
"api_keys": [
{
"created_at": "<string>",
"edges": {},
"environment_id": 123,
"id": 123,
"internal": true,
"key": "<string>",
"name": "<string>",
"organization_id": 123,
"revoked": true
}
]
},
"emails": [
"<string>"
],
"id": 123,
"name": "<string>",
"single_user_org": true
}
]
},
"id": 123,
"name": "<string>",
"organization_id": 123
}
]