apikeys
Revokes an API Key making it inactive
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
Revokes an API Key making it inactive
DELETE
/
apikeys
/
revoke
/
{id}
curl --request DELETE \
--url https:/api.schedo.dev/api/apikeys/revoke/{id}
[
[
{
"created_at": "<string>",
"edges": {},
"environment_id": 123,
"id": 123,
"internal": true,
"key": "<string>",
"name": "<string>",
"organization_id": 123,
"revoked": true
}
]
]
Path Parameters
API Key ID
Response
200 - application/json
OK
The response is of type array
.
curl --request DELETE \
--url https:/api.schedo.dev/api/apikeys/revoke/{id}
[
[
{
"created_at": "<string>",
"edges": {},
"environment_id": 123,
"id": 123,
"internal": true,
"key": "<string>",
"name": "<string>",
"organization_id": 123,
"revoked": true
}
]
]