GET
/
stream-configuration-service
/
api
/
v1
/
stream-configuration-templates
curl --request GET \
  --url https://stream-configuration-service.vatis.tech/stream-configuration-service/api/v1/stream-configuration-templates \
  --header 'Authorization: Bearer <token>'
{
  "totalPages": 123,
  "totalElements": 123,
  "pageable": {
    "pageNumber": 123,
    "pageSize": 123,
    "paged": true,
    "unpaged": true,
    "offset": 123,
    "sort": {
      "sorted": true,
      "unsorted": true,
      "empty": true
    }
  },
  "numberOfElements": 123,
  "size": 123,
  "content": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "dataSourceSchema": "<string>",
      "processors": [
        {
          "id": "<string>",
          "name": "<string>",
          "description": "<string>",
          "processorDeclaration": {
            "id": "<string>",
            "displayName": "<string>",
            "description": "<string>",
            "clusterDomainNameTemplate": "<string>",
            "podsDiscoveryClusterDomainName": "<string>",
            "revision": "<string>",
            "propertiesSchema": "<string>",
            "inputSchemas": [
              "<string>"
            ],
            "outputSchema": "<string>",
            "features": {
              "support": [
                "<string>"
              ],
              "require": [
                "<string>"
              ],
              "implement": [
                "<string>"
              ],
              "requireSupport": [
                "<string>"
              ]
            },
            "operationType": "BATCH_TRANSCRIPTION"
          },
          "previousProcessorId": "<string>",
          "propertiesSchema": "<string>",
          "properties": {},
          "destinationTopicMessageHeaders": {},
          "destinationTopicHeaders": {},
          "sourceSubscriptionHeaders": {},
          "patchAliases": {},
          "egress": {
            "persist": true,
            "sink": true,
            "tags": [
              "<string>"
            ]
          }
        }
      ],
      "patchAliases": {}
    }
  ],
  "number": 123,
  "sort": {
    "sorted": true,
    "unsorted": true,
    "empty": true
  },
  "first": true,
  "last": true,
  "empty": true
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer
default:
0

Page number

size
integer
default:
10

Page size

Response

200
application/json
Success
totalPages
integer
totalElements
integer
pageable
object
numberOfElements
integer
size
integer
content
object[]
number
integer
sort
object
first
boolean
last
boolean
empty
boolean