Parent Collections

In Kondado, Parent Collections are the sources and destinations that can be added by users of our platform.

List Available Sources for Creation

Description

Lists the sources available for creation for the user. This endpoint should not be confused with the endpoint that lists the sources created by the user.

Method

GET

Endpoint

/parent_collections/src

URL Parameters

None

Example Response

{
    "success": true,
    "data": [
        {
            "id": 76,
            "createdAt": "2020-06-30T23:30:56.904Z",
            "updatedAt": "2020-06-30T23:30:56.904Z",
            "parent_collection_name": "Salesforce Marketing Cloud",
            "parent_collection_image": "https://kondado.com.br/assets/images/conectores_salesforcemarketingcloud.png",
            "_links": {
                "src": {
                    "tutorial": "https://kondado.io/wiki/en/a/salesforce-marketing-cloud"
                }
            }
        }
    ]
}

Response Description

id

Record ID

createdAt

Record creation date

updatedAt

Record last update date

parent_collection_name

Source name

parent_collection_image

URL of the source logo image

_links

JSON object containing links related to the record. Since some collections can act as both sources (src) and destinations (dest) at the same time (for example, PostgreSQL), the links are separated in the JSON under the src and dest keys.

The src/dest JSON object will contain the key describing the link and the link itself as its value, for example:

"tutorial": "https://kondado.io/wiki/en/a/salesforce-marketing-cloud"

List Available Destinations for Creation

Description

Lists the destinations available for creation for the user. This endpoint should not be confused with the endpoint that lists the destinations created by the user.

Method

GET

Endpoint

/parent_collections/dest

URL Parameters

None

Example Response

{
    "success": true,
    "data": [
        {
            "id": 20,
            "parent_collection_image": "https://kondado.com.br/assets/images/conectores_bigquery.png",
            "parent_collection_name": "BigQuery",
            "_links": {
                "src": {
                    "tutorial": "https://kondado.io/wiki/en/a/bigquery"
                },
                "dest": {
                    "tutorial": "https://kondado.io/wiki/en/a/dest-bigquery"
                }
            },
            "createdAt": "2019-03-24T21:26:41.134Z",
            "updatedAt": "2019-03-24T21:26:41.134Z"
        }
    ]
}

Response Description

id

Record ID

createdAt

Record creation date

updatedAt

Record last update date

parent_collection_name

Destination name

parent_collection_image

URL of the destination logo image

_links

JSON object containing links related to the record. Since some collections can act as both sources (src) and destinations (dest) at the same time (for example, PostgreSQL), the links are separated in the JSON under the src and dest keys.

The src/dest JSON object will contain the key describing the link and the link itself as its value, for example:

"tutorial": "https://kondado.io/wiki/en/a/salesforce-marketing-cloud"