Destinations
List
List all destinations for the authenticated user.
Response
- 200: Successfully retrieved list of destinations
- Returns:
{ "connectors": DestinationConfigDict }
- Returns:
Example Response
{
"connectors": {
"my-s3-destination": {
"type": "s3",
"config": {
"bucket": "my-bucket",
"region": "us-east-1"
}
},
"my-webhook-destination": {
"type": "webhook",
"config": {
"url": "https://api.example.com/webhook"
}
}
}
}
POST
Python
Python
