/
Parent -Child Connection API -

Parent -Child Connection API -

  1. The frontend will send the App ID in the request body, and the API will return the associated parent connectionId.

    curl --location --globoff '{BASE_URL}/api/v1/getParentConnectiond' \ --header 'Content-Type: application/json' \ --data '{ "appId" : 62 }'

Response :

{ 361: "Amazon Prime", 362: "Raymond Myntra" }


2. Once the request is received, will use the query below to get the parent connection ID for the provided App ID

SELECT iac.id, iac.connectionTitle FROM ie_appinstall_connection iac LEFT JOIN ie_app_installation iai ON iai.appInstallationId = iac.appInstallationId WHERE iai.appId = :appId AND isSellerOfRecord = '0'; AND iai.accountSlug = 'eshop' AND iac.isActive ='active'



3. Once the user selects the parent connection ID through UI, the frontend needs to pass the parentConnectionId in the request body of the API to create the child connection ID.

RequestBody -

curl --location -g 'https://{{workspace}}.auperator.co/api/v1/connection/start' \ --header 'Authorization: Bearer <Token>' \ --data '{ "appId": 96, "installationId": 99, "connectionName": "Flipkart", "isSellerOfRecord": "1", "parentConnectionId" : "--" }'


Based on the received parentConnectionId, we will create a new child connection linked to the selected parent connection.

Related content