Features Docs Pricing Buy

Runbooks

GET/api/runbooks/
curl -s -X GET "https://alphieui.com/api/runbooks/" \
  -H "Authorization: Bearer $TOKEN"
POST/api/runbooks/
curl -s -X POST "https://alphieui.com/api/runbooks/" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{}'
DELETE/api/runbooks/{id}
curl -s -X DELETE "https://alphieui.com/api/runbooks/{id}" \
  -H "Authorization: Bearer $TOKEN"
GET/api/runbooks/{id}
curl -s -X GET "https://alphieui.com/api/runbooks/{id}" \
  -H "Authorization: Bearer $TOKEN"
PUT/api/runbooks/{id}
curl -s -X PUT "https://alphieui.com/api/runbooks/{id}" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{}'
POST/api/runbooks/{id}/run
curl -s -X POST "https://alphieui.com/api/runbooks/{id}/run" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{}'

Notes