Modify admin settings

put

/api/{version}/admin/defaults

Versions Supported:

v4

Request

Path Parameters
Supported Media Types
Request Body - application/xml ()
A body of type:
  • application/json
  • application/xml
Root Schema : schema
Type: object
Show Source
Nested Schema : defaultAdvFilters
Type: array
Show Source
Nested Schema : defaultFilters
Type: array
Show Source
Nested Schema : defaultMaps
Type: array
Show Source
Nested Schema : DefaultAdvFiltersInfo
Type: object
Show Source
Nested Schema : filterFields
Type: array
Show Source
Nested Schema : RadialFilter
Type: object
Show Source
Nested Schema : rangeFilters
Type: array
Show Source
Nested Schema : FilterInfo
Type: object
Show Source
Nested Schema : RangeFilterInfo
Type: object
Show Source
Nested Schema : Range
Type: object
Show Source
Nested Schema : DefaultMap
Type: object
Show Source
Request Body - application/json ()
A body of type:
  • application/json
  • application/xml
Root Schema : schema
Type: object
Show Source
Nested Schema : defaultAdvFilters
Type: array
Show Source
Nested Schema : defaultFilters
Type: array
Show Source
Nested Schema : defaultMaps
Type: array
Show Source
Nested Schema : DefaultAdvFiltersInfo
Type: object
Show Source
Nested Schema : filterFields
Type: array
Show Source
Nested Schema : RadialFilter
Type: object
Show Source
Nested Schema : rangeFilters
Type: array
Show Source
Nested Schema : FilterInfo
Type: object
Show Source
Nested Schema : RangeFilterInfo
Type: object
Show Source
Nested Schema : Range
Type: object
Show Source
Nested Schema : DefaultMap
Type: object
Show Source
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : Defaults
Type: object
Title: Defaults
Show Source
Nested Schema : defaultAdvFilters
Type: array
Show Source
Nested Schema : defaultFilters
Type: array
Show Source
Nested Schema : defaultMaps
Type: array
Show Source
Nested Schema : DefaultAdvFiltersInfo
Type: object
Show Source
Nested Schema : filterFields
Type: array
Show Source
Nested Schema : RadialFilter
Type: object
Show Source
Nested Schema : rangeFilters
Type: array
Show Source
Nested Schema : FilterInfo
Type: object
Show Source
Nested Schema : RangeFilterInfo
Type: object
Show Source
Nested Schema : Range
Type: object
Show Source
Nested Schema : DefaultMap
Type: object
Show Source

404 Response

Requested resource could not be found.
Body ()
Root Schema : schema
Type: object

500 Response

An unexpected error occurred during the request.
Body ()
Root Schema : schema
Type: object
Back to Top

Examples

Example Request:

/api/v4/admin/defaults

Example Request Body:

 {
     "defaultFilters": [
         {
             "filterName": "CompanyInBusiness",
             "filterValue":"Y"
         },
         {
             "filterName": "Enterprise Companies",
             "filterValue":"Y"
         },
         {
         		"filterName": "Defunct",
         		"filterValue":"N"
         }
     ],
     "defaultMaps": [
         {
             "mapMode": "CRM_STANDARD",
             "mapName": "CXContactExport",
             "mapType": "EXPORT",
             "objectType": "CONTACT"
         },
         {
             "mapMode": "CRM_STANDARD",
             "mapName": "CXCompanyExport",
             "mapType": "EXPORT",
             "objectType": "COMPANY"
         },
         {
             "mapMode": "CRM_STANDARD",
             "mapName": "CXContactMatch",
             "mapType": "ENRICH",
             "objectType": "CONTACT"
         },
         {
             "mapMode": "CRM_STANDARD",
             "mapName": "CXCompanyMatch",
             "mapType": "ENRICH",
             "objectType": "COMPANY"
         }
     ]
     "defaultOutputFormat": "TXT"
}

Example Response:

 {
     "defaultFilters": [
         {
             "filterName": "CompanyInBusiness",
             "filterValue":"Y"
         },
         {
             "filterName": "Enterprise Companies",
             "filterValue":"N"
         },
         {
         		"filterName": "Defunct",
         		"filterValue":"Y"
         }
     ],
     "defaultMaps": [
         {
             "mapMode": "CRM_STANDARD",
             "mapName": "CXContactExport",
             "mapType": "EXPORT",
             "objectType": "CONTACT"
         },
         {
             "mapMode": "CRM_STANDARD",
             "mapName": "CXCompanyExport",
             "mapType": "EXPORT",
             "objectType": "COMPANY"
         },
         {
             "mapMode": "CRM_STANDARD",
             "mapName": "CXContactMatch",
             "mapType": "ENRICH",
             "objectType": "CONTACT"
         },
         {
             "mapMode": "CRM_STANDARD",
             "mapName": "CXCompanyMatch",
             "mapType": "ENRICH",
             "objectType": "COMPANY"
         }
     ]
     "defaultOutputFormat": "TXT"
}
Back to Top