Destinations

List destinations for recipient

Get a list of configured data destinations for a recipient. The recipient_id can be provided either via a recipient-scoped auth token or the recipient_id query parameter.

get/recipients/{recipient_id}/destinations

Path parameters

recipient_idstring required

Recipient ID.

Query parameters

destination_idstring

Destination ID. Multiple IDs can also be provided as a comma-separated string.

namestring

Destination name. Case-insensitive. Multiple values can be provided as a comma-separated string.

vendorstring

Filter by vendor type (postgres, redshift).

is_enabledstring

Filter by enabled status (true or false).

product_namestring

Product name. Multiple values can be provided as a comma-separated string.

model_namestring

Model name. Multiple values can be provided as a comma-separated string.

page_sizeinteger

Number of items to return per page.

order'asc' | 'desc'

Sort order for items

cursorstring

Used for pagination - represents last page seen. Value is included in response when there is a next page.

Response

OK

status'success' required
dataListDestinationResponse required— unresolved $ref
messagestring required
has_nextboolean required

Whether there are more items beyond this page.

next_urlstring

Full URL to fetch the next page. Only present when has_next is true.

Changes