J•Feed Documentation

Basic Api Request

Basic Authentication

For a Request to restricted Routes you need a User Account for basic authentication.

Example

Request

Authenticate with "login" and "password" in body as a Form Post.

In this case a cURL POST request to get all Feeds (no need to authenticate, just for example).

curl -X POST --location "/api/v1/feed" -H "Content-Type: application/x-www-form-urlencoded" -d "login={{USER_EMAIL}}&password={{USER_PASSWORD}}"

Response

Should be always a JSON.

[
  {
    "id": "cec1d263-7e58-479a-863f-3f84e7dbcaee",
    "name": "My Feed",
    "created": "2021-07-01T13:05:59+00:00"
  }
]