/
Parent -Child Connection API -
Parent -Child Connection API -
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.
, multiple selections available,
Related content
parent-child app setup
parent-child app setup
More like this
APIs for front-end Ajio
APIs for front-end Ajio
More like this
AJIO API handling for front-end
AJIO API handling for front-end
More like this
Generate Credit Note And Upload Credit Note
Generate Credit Note And Upload Credit Note
More like this
Amazon Create Return V2
Amazon Create Return V2
More like this
Create a custom app
Create a custom app
More like this