Skip to main content
POST
Python SDK

Authorizations

Authorization
string
header
required

Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.

Body

application/json

Fields to be set for the list request.

Filter with exact match

filter
and · object

A query that matches items matching boolean combinations of other queries. It is built using one or more boolean clauses, which can be of types: and, or or not

sort
object[]

List of properties to sort by. Currently only supports 1 property.

Required array length: 1 element
limit
integer<int32>
default:100

Maximum number of items per page. Use the cursor to get more pages.

Required range: 1 <= x <= 1000
cursor
string

Cursor for paging through results.

Response

One page of document list results.

items
object[]
required
nextCursor
string

The cursor to get the next page of results (if available).

Last modified on July 31, 2026