List all destinations in a given project. If more than limit
destinations exist, a cursor for pagination will be returned with the response.
List of destinations and an optional cursor.
The response for a bad request.
Validation Error
destination_list = client.hosted_extractors.destinations.list(limit=5) for destination in client.hosted_extractors.destinations: destination # do something with the destination for destination_list in client.hosted_extractors.destinations(chunk_size=25): destination_list # do something with the destinationss
{- "items": [
- {
- "externalId": "my.known.id",
- "sessionId": 1,
- "targetDataSetId": 1,
- "createdTime": 1730204346000,
- "lastUpdatedTime": 1730204346000
}
], - "nextCursor": "string"
}