Check if there are any other Auto Response Rules that have status ACTIVE, apply to at least one of the businesses or locations in this request, and share at least one of the triggers in this request. When editing an existing Auto Response Rule, its id should be passed in ignoreRule so that it is not returned as a false positive.
A CheckConflictRequest object
List of business ids. Only check Auto Response Rules identified by the business ids listed in businesses
List of location ids. nly check Auto Response Rules identified by the location ids listed in locations
List of location ids that should be excluded from the check
Only check Auto Response Rules that also apply to these triggers, use ONE_STAR, TWO_STAR, THREE_STAR, FOUR_STAR and/or FIVE_STAR
- https://uberall.com/apihttps://uberall.com/api/auto-response/rules/check-conflict
- Mock Serverhttps://docs.uberall.com/_mock/apis/swagger/auto-response/rules/check-conflict
- X-API-KEY
- Authorization
curl -i -X POST \
https://uberall.com/api/auto-response/rules/check-conflict \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"businesses": [
0
],
"locations": [
0
],
"excludedLocations": [
0
],
"triggers": [
"string"
],
"ignoreRule": 0
}'Checking for conflicts completed.
{ "status": "SUCCESS", "message": "string", "warnings": [ "string" ], "response": [ { … } ] }