apikeys
Returns a list of API Keys for the organization
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
apikeys
Returns a list of API Keys for the organization
GET
/
apikeys
curl --request GET \
--url https:/api.schedo.dev/api/apikeys \
--header 'X-API-ENVIRONMENT: <x-api-environment>'
[
[
{
"created_at": "<string>",
"edges": {},
"environment_id": 123,
"id": 123,
"internal": true,
"key": "<string>",
"name": "<string>",
"organization_id": 123,
"revoked": true
}
]
]
Headers
1
Response
200 - application/json
OK
The response is of type array
.
curl --request GET \
--url https:/api.schedo.dev/api/apikeys \
--header 'X-API-ENVIRONMENT: <x-api-environment>'
[
[
{
"created_at": "<string>",
"edges": {},
"environment_id": 123,
"id": 123,
"internal": true,
"key": "<string>",
"name": "<string>",
"organization_id": 123,
"revoked": true
}
]
]