latestOpenAPI 3.0.02026-08-137192110.1 KB

75294f591cc2

Reverse ETL Syncs

Get Reverse ETL destination schema

List the properties available in the destination connection for a given object type. These are the properties used as the right-hand side of a Reverse ETL mapping.

get/reverse_etl_syncs/destination_schema

Query parameters

connection_idstring required
Example:X4ughggABSd3UY

The ID of the (already created) destination connection to read the schema from.

object_type_idstring required
Example:Q29udGFjdHx8Y29udGFjdA

The ID of the object type as used by the destination.

operation_modestring required
Example:MERGE

The operation mode the destination properties are resolved for (e.g. MERGE).

source_idstring required
Example:OoORhGXUVjsqFG

The ID of the source Transform the sync reads from.

Response

Example response

{
  "data": [
    {
      "id": "email",
      "property_name": "Email",
      "property_type": "string",
      "is_required": true,
      "is_primary_key": true
    }
  ]
}