ResourceDescriptors
List resource descriptors
Lists reusable resource descriptors. Descriptors describe the logical resource, data representation, structural contract, fields, semantic bindings, sensitivity, and retention hints independently from connector transport.
get/resource/descriptors
Query parameters
resourceKind'OBJECT' | 'TABULAR' | 'DOCUMENT' | 'CLAIM_SET' | 'GRAPH' | 'EVENT_STREAM' | 'FILE' | 'SECRET' | 'CONFIGURATION' | 'CREDENTIAL' | 'PRESENTATION' | 'CUSTOM'
Logical kind of resource being accessed, independent of transport and serialization. For example, a CSV file with rows is ResourceKind TABULAR and RepresentationKind CSV.
Example:TABULAR
Filters by logical resource kind. This does not imply a transport or serialization format.
pageinteger
Zero-based page index.
sizeinteger
Page size.
Response
Paged resource descriptors.
Example response
{
"data": [
{
"resourceDescriptorId": "41436f49-040c-4f5f-9c7f-657f43762e2b",
"displayName": "Employee profile CSV row",
"resourceKind": "TABULAR",
"representationKind": "CSV",
"createdAt": "2026-06-18T09:00:00Z",
"updatedAt": "2026-06-18T09:10:00Z"
}
],
"pagination": {
"limit": 20,
"offset": 0,
"page": 0,
"size": 20,
"total": 1,
"totalPages": 1,
"hasMore": false
}
}