# CreateProjectRss Method

## Description

Creates an RSS feed for a project. If an RSS feed already exists, the existing RSS feed information will be returned.

## HTTP Request

`POST https://api.skeddly.com/api/Projects/<id>/Rss`

## URL Parameters

### Id

ID of the project.

Type: `string`

Required: Yes

## Body

The body of the request is empty.

## Returns

A [ProjectRssFeed](/data-types/projectrssfeed-object.md) object.

## &#x20;Sample Request

{% tabs %}
{% tab title="HTTP" %}

```http
POST /api/Projects/proj-12345678/Rss HTTP/1.1
Host: api.skeddly.com
Authorization: AccessKey <api key>
Content-Type: application/json
```

{% endtab %}

{% tab title="Bash" %}

```bash
curl -X POST "https://api.skeddly.com/api/Projects/proj-12345678/Rss" \
  -H "Authorization: AccessKey <api key>"
```

{% endtab %}
{% endtabs %}

## Sample Response

```javascript
{
    "status": "active",
    "feedUrl": "https://rss.skeddly.com/"
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.skeddly.com/resources/projects/createprojectrss-method.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
