List all sources
Returns a list of sources.
Query Parameters
limit integer
Default value: 100
The number of results to return from offset.
offset integer
The initial position from which to return results.
Responses
- 200
OK
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
sources object[]
type string
The type of the source.
name string
The name of the source.
createdAt date-time
An ISO-8601 timestamp representing the date/time the source was created.
updatedAt date-time
An ISO-8601 timestamp representing the date/time the source was updated.
connectionUrl URL
The URL to the location of the source.
description string
The description of the dataset.
{
"sources": [
{
"type": "POSTGRESQL",
"name": "my-source",
"createdAt": "2019-05-09T19:49:24.201361Z",
"updatedAt": "2019-05-09T19:49:24.201361Z",
"connectionUrl": "jdbc:postgresql://db.example.com/mydb",
"description": "My first source!"
}
]
}
Loading...