Legacy Data Integration API Reference (1.0.0) - DatasourceTypes
Get Datasource List
Get the list of data source types connectors in the platform.
- scope:
datasource:list
Authorizations:
Responses
Response Schema: application/json
| name | string |
| _id | string datasource type id |
| segment | string Enum: "connections" "source" "target" The "segment" of the datasource. Can be set to target, connection, source, etc. |
| description | string |
| section_id | string |
| status | string Enum: "enabled" "coming_soon" "beta" "alpha" The data source status in the platform. |
| connection_type | string The connection type that this datasource is connected with |
| doc_url | string The connection of the datasource doc link |
| source_doc_url | string The datasource "walkthrough" doc link. |
Request samples
- cURL
- Python
curl --location --request GET 'https://console.rivery.io/api/datasource_types' \ --header 'Authorization: Bearer <token>'
Response samples
- 200
[- {
- "name": "facebook ads",
- "_id": "fb_ads",
- "segment": "connections",
- "description": "Facebook Ads Graph API",
- "section_id": "sec_marketing",
- "status": "coming_soon",
- "connection_type": "fb",
}
]Get the datasource list by segment
Get the datasource types list by segments (connection/target/source). Use this request in order to get the available sources, targets or connections in Data Integration.
- scope:
datasource:list
Authorizations:
Responses
Response Schema: application/json
| name | string |
| _id | string datasource type id |
| segment | string Enum: "connections" "source" "target" The "segment" of the datasource. Can be set to target, connection, source, etc. |
| description | string |
| section_id | string |
| status | string Enum: "enabled" "coming_soon" "beta" "alpha" The data source status in the platform. |
| connection_type | string The connection type that this datasource is connected with |
| doc_url | string The connection of the datasource doc link |
| source_doc_url | string The datasource "walkthrough" doc link. |
Response samples
- 200
[- {
- "name": "facebook ads",
- "_id": "fb_ads",
- "segment": "connections",
- "description": "Facebook Ads Graph API",
- "section_id": "sec_marketing",
- "status": "coming_soon",
- "connection_type": "fb",
}
]