Appearance
List project data sources
GET
/api/v1/projects/{project_id}/sources
Retrieves all data sources for the specified project, ordered by creation date descending, along with a total item count across all sources.
Authorizations
HTTPBearer
Type
HTTP (bearer)
Parameters
Path Parameters
project_id*
Type
Requiredstring
Format
"uuid"Responses
Successful Response
application/json
JSON
{
"sources": [
{
"id": "string",
"project_id": "string",
"type": "string",
"name": "string",
"config": {
},
"status": "string",
"item_count": 0,
"last_synced_at": "string",
"error_message": "string",
"created_at": "string"
}
],
"total_items": 0
}