POST
/
v1
/
repositories
/
inspections
/
{id}
/
add_user_manifest
curl --request POST \
  --url https://api.runloop.ai/v1/repositories/inspections/{id}/add_user_manifest \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "container_config": {
    "base_image_name": "<string>",
    "setup_commands": [
      "<string>"
    ]
  },
  "workspaces": [
    {
      "name": "<string>",
      "path": "<string>",
      "package_manager": "<string>",
      "workspace_setup_commands": [
        "<string>"
      ],
      "workspace_refresh_commands": [
        "<string>"
      ],
      "dev_commands": {
        "install": "<string>",
        "build": "<string>",
        "test": "<string>",
        "lint": "<string>"
      },
      "required_env_vars": [
        "<string>"
      ]
    }
  ]
}'
{
  "container_config": {
    "base_image_name": "<string>",
    "setup_commands": [
      "<string>"
    ]
  },
  "workspaces": [
    {
      "name": "<string>",
      "path": "<string>",
      "package_manager": "<string>",
      "workspace_setup_commands": [
        "<string>"
      ],
      "workspace_refresh_commands": [
        "<string>"
      ],
      "dev_commands": {
        "install": "<string>",
        "build": "<string>",
        "test": "<string>",
        "lint": "<string>"
      },
      "required_env_vars": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Repo Connection ID

Body

application/json

Response

200 - application/json

OK

The repository manifest contains container configuration and workspace definitions for a repository.