Delete Recommendation
Delete the existing recommendation algorithm.
End Point
GET
https://api.cartup.ai/v1/widget/custom/delete
Query Parameters
Name
Type
Description
request*
String
Request Object (Refer below)
Headers
Name
Type
Description
Accept*
String
application/json
Content_type*
String
application/json
X-Cartup-Access-Token*
String
$CARTUP_API_KEY
X-Cartup-orgId*
String
$CARTUP_ORD_ID
Curl Example
curl --request GET 'https://api.cartup.ai/v1/widget/custom/delete?request={"orgId":"850a8b8f-a6fe-49e4-88fc-874843279d66","divisionId":"demo_delete","orgName":"WorldMarts"}'
--header 'Accept : application/json' \
--header 'Content-Type : application/json' \
--header 'X-Cartup-Access-Token : $CARTUP_API_KEY'
--header 'X-Cartup-orgId : $CARTUP_ORD_ID'
-d '{
"orgId": "850a8b8f-a6fe-49e4-88fc-874843279d66",
"divisionId": "test123",
"orgName": "WorldMarts"
}
Request Object
Key
Type
Description
Required
orgId
String
Your Org ID
Yes
divisionId
String
HTML Tag ID
Yes
orgName
String
Your Org Name
Yes
Example
{
"orgId": "850a8b8f-a6fe-49e4-88fc-874843279d66",
"divisionId": "test123",
"orgName": "WorldMarts"
}
Last updated
Was this helpful?