Create or update automation filters for a dealer
Create or update automation filters for a dealer
Path Parameters
dealerUUID string required
application/json
Request Body required
automationFilters object[]
Responses
- 200
OK
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
{
"errors": [
{
"errorCode": "string",
"errorDescription": "string",
"errorUID": "string"
}
],
"warnings": [
{
"warningCode": "string",
"warningDescription": "string"
}
]
}
POST /dealers/:dealerUUID/automationFilters
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X POST '/communications/dealers/:dealerUUID/automationFilters' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"automationFilters": [
{
"typeKey": "string",
"value": "string",
"isEnabled": true
}
]
}'
python / requests
curl -L -X POST '/communications/dealers/:dealerUUID/automationFilters' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"automationFilters": [
{
"typeKey": "string",
"value": "string",
"isEnabled": true
}
]
}'
go / native
curl -L -X POST '/communications/dealers/:dealerUUID/automationFilters' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"automationFilters": [
{
"typeKey": "string",
"value": "string",
"isEnabled": true
}
]
}'
nodejs / axios
curl -L -X POST '/communications/dealers/:dealerUUID/automationFilters' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"automationFilters": [
{
"typeKey": "string",
"value": "string",
"isEnabled": true
}
]
}'
ruby / Net::HTTP
curl -L -X POST '/communications/dealers/:dealerUUID/automationFilters' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"automationFilters": [
{
"typeKey": "string",
"value": "string",
"isEnabled": true
}
]
}'
csharp / RestSharp
curl -L -X POST '/communications/dealers/:dealerUUID/automationFilters' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"automationFilters": [
{
"typeKey": "string",
"value": "string",
"isEnabled": true
}
]
}'
php / cURL
curl -L -X POST '/communications/dealers/:dealerUUID/automationFilters' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"automationFilters": [
{
"typeKey": "string",
"value": "string",
"isEnabled": true
}
]
}'
java / OkHttp
curl -L -X POST '/communications/dealers/:dealerUUID/automationFilters' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"automationFilters": [
{
"typeKey": "string",
"value": "string",
"isEnabled": true
}
]
}'
powershell / RestMethod
curl -L -X POST '/communications/dealers/:dealerUUID/automationFilters' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"automationFilters": [
{
"typeKey": "string",
"value": "string",
"isEnabled": true
}
]
}'