Home / Resources / API Reference

Feed

Base route: /api/feed

Create feed

This API endpoint creates a new package feed in the workspace. Feeds are used to store and retrieve application artifacts and packages.

Request

Parameters
workspaceId
string
required
The ID of the workspace where the feed will be created.
name
string
required
The display name of the feed.
type
string
required
The type of the feed (e.g., Nuget, Docker, Maven).
location
string
required
The URL or path to the feed repository.
Request body

POST /api/feed {   "workspaceId": "string",   "name": "string",   "type": "string",   "location": "string",   "username": "string",   "password": "string" }

Response

Parameters
feedId
string
The unique identifier for the created feed.
Response body

{   "feedId": "string" }