List Sinks
pipelines.sinks.list(SinkListParams**kwargs) -> SyncV4PagePaginationArray[SinkListResponse]
GET/accounts/{account_id}/pipelines/v1/sinks
List/Filter Sinks in Account.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
Accepted Permissions (at least one required)
Parameters
List Sinks
import os
from cloudflare import Cloudflare
client = Cloudflare(
api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted
)
page = client.pipelines.sinks.list(
account_id="0123105f4ecef8ad9ca31a8372d0c353",
)
page = page.result[0]
print(page.id){
"result": [
{
"id": "01234567890123457689012345678901",
"created_at": "2019-12-27T18:11:19.117Z",
"modified_at": "2019-12-27T18:11:19.117Z",
"name": "my_sink",
"type": "r2",
"config": {
"account_id": "account_id",
"bucket": "bucket",
"file_naming": {
"prefix": "prefix",
"strategy": "serial",
"suffix": "suffix"
},
"jurisdiction": "jurisdiction",
"partitioning": {
"time_pattern": "year=%Y/month=%m/day=%d/hour=%H"
},
"path": "path",
"rolling_policy": {
"file_size_bytes": 0,
"inactivity_seconds": 1,
"interval_seconds": 1
}
},
"format": {
"type": "json",
"decimal_encoding": "number",
"timestamp_format": "rfc3339",
"unstructured": true
},
"schema": {
"fields": [
{
"type": "int32",
"metadata_key": "metadata_key",
"name": "name",
"required": true,
"sql_name": "sql_name"
}
],
"format": {
"type": "json",
"decimal_encoding": "number",
"timestamp_format": "rfc3339",
"unstructured": true
},
"inferred": true
}
}
],
"result_info": {
"count": 1,
"page": 0,
"per_page": 10,
"total_count": 1
},
"success": true
}Returns Examples
{
"result": [
{
"id": "01234567890123457689012345678901",
"created_at": "2019-12-27T18:11:19.117Z",
"modified_at": "2019-12-27T18:11:19.117Z",
"name": "my_sink",
"type": "r2",
"config": {
"account_id": "account_id",
"bucket": "bucket",
"file_naming": {
"prefix": "prefix",
"strategy": "serial",
"suffix": "suffix"
},
"jurisdiction": "jurisdiction",
"partitioning": {
"time_pattern": "year=%Y/month=%m/day=%d/hour=%H"
},
"path": "path",
"rolling_policy": {
"file_size_bytes": 0,
"inactivity_seconds": 1,
"interval_seconds": 1
}
},
"format": {
"type": "json",
"decimal_encoding": "number",
"timestamp_format": "rfc3339",
"unstructured": true
},
"schema": {
"fields": [
{
"type": "int32",
"metadata_key": "metadata_key",
"name": "name",
"required": true,
"sql_name": "sql_name"
}
],
"format": {
"type": "json",
"decimal_encoding": "number",
"timestamp_format": "rfc3339",
"unstructured": true
},
"inferred": true
}
}
],
"result_info": {
"count": 1,
"page": 0,
"per_page": 10,
"total_count": 1
},
"success": true
}