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 object.

Sample Request

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

Sample Response

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

Last updated