DevZero Logo
DevZero

Given multiple repos, suggest commands

POST
/suggest/v3
/suggest/v3

Request Body

application/jsonRequired

suggest body

body
Required
array<object>

curl -X POST "https://api.devzero.io/backend/v0/suggest/v3" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "git_username": "string",
      "owner": "string",
      "personal_access_token": "string",
      "repo": "string"
    }
  ]'

Array of commands

{
  "suggestions": [
    {
      "provider": "string",
      "suggestions": [
        {
          "confidence": "HIGH",
          "step": "string",
          "step_description": "string",
          "step_name": "string",
          "step_phase": "build"
        }
      ]
    }
  ]
}