Create an inbound message filter

post

/crmRestApi/resources/11.13.18.05/inboundMsgFilters

Request

Header Parameters
  • If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
  • The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
  • Contains one of the following values: true or false. If true, the server performs an Upsert operation instead of a Create operation. During an Upsert operation, the server attempts to find an existing resource that matches the payload. If a match is found, the server updates the existing resource instead of creating a new one. If not found or false (default), the server performs a Create operation. Note that the Upsert operation isn't supported for date-effective REST resources.
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
  • Title: Action Code
    Maximum Length: 30
    The code indicating if an Accept or a Reject action is applied on the filter. A list of accepted values is defined in the lookup ORA_SVC_INBND_FLTR_ACTION_TYPE.
  • Title: Action Value
    Maximum Length: 255
    Indicates the display value corresponding to the action lookup code for the inbound email filters.
  • Title: User-Defined Filter
    Maximum Length: 1
    Default Value: false
    Indicates whether the filter is user defined.
  • Title: Deleted
    Maximum Length: 1
    Default Value: false
    Indicates whether the filter is deleted. The default value is false.
  • Title: Description
    Maximum Length: 400
    The description of the filter.
  • Title: Field Name
    Maximum Length: 64
    The name of the field on which the filter is to be applied.
  • Title: Filter ID
    The unique identifier of the inbound message filter.
  • Title: Filter Type Code
    Maximum Length: 30
    The code indicating the type of the filter. A list of accepted values is defined in the lookup ORA_SVC_INBND_FLTR_FIELD_TYPE.
  • Title: Filter Type Value
    Maximum Length: 255
    Indicates the display value corresponding to the filter type lookup code for the inbound email filters.
  • Title: Order Number
    The order in which the filters must be applied. Valid only if there are more than one filters.
  • Title: Pattern
    Maximum Length: 400
    The pattern value of the filter.
Back to Top

Response

Supported Media Types

Default Response

The following table describes the default response for this task.
Headers
  • If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
  • The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
Body ()
Root Schema : inboundMsgFilters-item-response
Type: object
Show Source
  • Title: Action Code
    Maximum Length: 30
    The code indicating if an Accept or a Reject action is applied on the filter. A list of accepted values is defined in the lookup ORA_SVC_INBND_FLTR_ACTION_TYPE.
  • Title: Action Value
    Maximum Length: 255
    Indicates the display value corresponding to the action lookup code for the inbound email filters.
  • Title: Created By
    Read Only: true
    Maximum Length: 64
    The user who created the inbound message filter.
  • Title: Creation Date
    Read Only: true
    The date when the inbound message filter was created.
  • Title: User-Defined Filter
    Maximum Length: 1
    Default Value: false
    Indicates whether the filter is user defined.
  • Title: Deleted
    Maximum Length: 1
    Default Value: false
    Indicates whether the filter is deleted. The default value is false.
  • Title: Can Delete
    Read Only: true
    Indicates if the inbound message filter can be deleted. The default value is false.
  • Title: Description
    Maximum Length: 400
    The description of the filter.
  • Title: Field Name
    Maximum Length: 64
    The name of the field on which the filter is to be applied.
  • Title: Filter ID
    The unique identifier of the inbound message filter.
  • Title: Filter Type Code
    Maximum Length: 30
    The code indicating the type of the filter. A list of accepted values is defined in the lookup ORA_SVC_INBND_FLTR_FIELD_TYPE.
  • Title: Filter Type Value
    Maximum Length: 255
    Indicates the display value corresponding to the filter type lookup code for the inbound email filters.
  • Title: Last Updated Date
    Read Only: true
    The date when the inbound message filter was last updated.
  • Title: Last Updated By
    Read Only: true
    Maximum Length: 64
    The user who last updated the inbound message filter.
  • Links
  • Title: Order Number
    The order in which the filters must be applied. Valid only if there are more than one filters.
  • Title: Pattern
    Maximum Length: 400
    The pattern value of the filter.
  • Title: Can Update
    Read Only: true
    Indicates if the inbound message filter can be updated. The default value is false.
Back to Top

Examples

Use POST with the following URI syntax to create an inbound message filter:

Example of Request URI

The following shows an example of the request URL.

https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/inboundMsgFilters

Example of Request Header

The following shows an example of the request header.

POST /crmRestApi/resources/11.13.18.05/inboundMsgFilters HTTP/1.1
HOST: servername.fa.us2.oraclecloud.com
authorization: Basic U0FMRVNfQURNSU46V2VsY29tZTE=
content-type: application/vnd.oracle.adf.resourceitem+json

Example of Request Body

The following shows an example of the request body in JSON format.

Content type:
{
      "FilterTypeCd": "ORA_SVC_SUBJECT",
      "FieldName": "Subject",
      "Pattern": ".*spam.*",
      "Description": "This filter is to reject mail if subject is spam",
      "CustomFilterFlag": false,
      "DeletedFlag": false,
      "ActionCd": "ORA_SVC_REJECT"
}

Example of Response Header

The following shows an example of the response header.

HTTP/1.1 201: Created
Date: Mon, 18 Jan 2017 08:43:04 GMT
Server: Oracle-HTTP-Server-11g
Content-Type: application/vnd.oracle.adf.resourceitem+json
Content-Language: en

Example of Response Body

The following shows an example of the response body in JSON format.

Content type:
{
"FilterId": 300100095325310,
"FilterTypeCd": "ORA_SVC_SUBJECT",
"FieldName": "Subject",
"Pattern": ".*spam.*",
"OrderNumber": 300100095325311,
"Description": "This filter is to reject mail if subject is spam",
"CustomFilterFlag": false,
"DeletedFlag": false,
"CreationDate": "2017-01-18T00:43:03-08:00",
"CreatedBy": "SALES_ADMIN",
"LastUpdateDate": "2017-01-18T00:43:03-08:00",
"LastUpdatedBy": "SALES_ADMIN",
"ActionCd": "ORA_SVC_REJECT",
"links": [
  
{
"rel": "self",
"href": " http://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/inboundMsgFilters/300100095325310",
"name": "inboundMsgFilters",
"kind": "item",
"properties": 
{
"changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787200106A6176612E6C616E672E4F626A656374000000000000000000000078700000000178"
}
}
,
  
{
"rel": "canonical",
"href": " http://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/inboundMsgFilters/300100095325310",
"name": "inboundMsgFilters",
"kind": "item"
}
,
  
{
"rel": "lov",
"href": " http://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/inboundMsgFilters/300100095325310/lov/ActionCdLookupPVO",
"name": "ActionCdLookupPVO",
"kind": "collection"
}
,
  
{
"rel": "lov",
"href": " http://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/inboundMsgFilters/300100095325310/lov/YesNoLookupPVO",
"name": "YesNoLookupPVO",
"kind": "collection"
}
,
  
{
"rel": "lov",
"href": " http://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/inboundMsgFilters/300100095325310/lov/FilterTypeLookupPVO",
"name": "FilterTypeLookupPVO",
"kind": "collection"
}
],
}
Back to Top