Cookies Settings

Loading

dnb-logo
Direct 2.0
Collapse

Create Notification Profile

This function allows a customer to specify a user preference and the frequency for testing monitoring profile conditions.

A Notification Profile establishes the protocol by which change events should be delivered to customers, and references user preferences setup in the User Service. This is the PUSH component of the Data Field Monitoring feature.

Update History

No modifications have been made to this data layer since the initial release.

What to do First

Feature Request

IMPORTANT: Please see the new Online Services Security Enhancement Release, effective November 09, 2020.

Data Layer Entitlement

For customers in U.S. and Canadian markets, the API is provisioned for specific collections of products, reports, and/or features (collectively referred to as data layers) for production and trial usage. Entitlement is not required for testing in the sandbox environment.

  • This function does not require entitlement for production and trial usage. Entitlement for monitoring is only required for the Add Monitoring Registration function, and for the data layers that will monitored.

Specification

Restriction: The sequence of Request Parameters submitted to POST/PUT operations currently MUST follow the order presented in this section. This applies to REST calls only.

Restriction: An XML namespace statement MUST be included as the first statement within the primary Aggregate of the request. Please refer to the Sample Request for an example. This applies to REST calls only.

Sample Request (Create)
POST https://direct.dnb.com/V4.1/monitoring/notificationprofiles
Content-Type: application/json
Authorization: <MyToken>
{
  "mon:CreateNotificationProfileRequest": {
    "@xmlns$mon": "http://services.dnb.com/MonitoringServiceV2.0",
    "TransactionDetail": {
      "ApplicationTransactionID": "ID_001"
    },
    "CreateNotificationProfileRequestDetail": {
      "NotificationProfileSpecification": {
        "NotificationProfileName": "Notification_Profile_Email_01",
        "NotificationProfileDescription": "Email Notofication Proile",
        "DeliveryMode": "Email",
        "DeliveryChannelUserPreferenceName": "John-updatedemail",
        "DeliveryFrequency": "Immediate",
        "DeliveryFormat": "XML",
        "StopDeliveryIndicator": "false"
      },
      "InquiryReferenceText": { "CustomerReferenceText": "Notification_Profile_Email_01" }
    }
  }
}
Name Characteristics
CreateNotificationProfileRequest Aggregate
CreateNotificationProfileRequest@ServiceVersionNumber Attribute
CreateNotificationProfileRequest@xsi:schemaLocation Attribute
CreateNotificationProfileRequest { TransactionDetail Aggregate, Optional

Records information necessary to process this request.

CreateNotificationProfileRequest { TransactionDetail { ApplicationTransactionID string up to 64 chars., Optional

A number assigned by the calling application to uniquely identify this request.

CreateNotificationProfileRequest { TransactionDetail { TransactionTimestamp DateTimestamp, Optional

The date and time when this request was created. When the request is from an intermediary, such as a workflow manager or service bus, this is the date and time when the message was sent to the D&B function, i.e., the date and time when the xml document was created by the requesting intermediary.

CreateNotificationProfileRequest { TransactionDetail { SubmittingOfficeID string up to 64 chars., Optional

A number that identifies the system or the software application from where this request originated. / A number used to uniquely identfy the D&B business segment or delivery channel from where this request originated.

END: CreateNotificationProfileRequest } TransactionDetail /Aggregate
CreateNotificationProfileRequest { CreateNotificationProfileRequestDetail Aggregate, Required
CreateNotificationProfileRequest { CreateNotificationProfileRequestDetail { NotificationProfileSpecification Aggregate, Required
CreateNotificationProfileRequest { CreateNotificationProfileRequestDetail { NotificationProfileSpecification { NotificationProfileName string at least 1 chars. up to 64 chars. Pattern: {.*[^\s].*}., Required

A name that is provided by the user to the profile.

CreateNotificationProfileRequest { CreateNotificationProfileRequestDetail { NotificationProfileSpecification { NotificationProfileDescription string up to 256 chars., Optional

A string that records the description of the profile

CreateNotificationProfileRequest { CreateNotificationProfileRequestDetail { NotificationProfileSpecification { DeliveryMode DeliveryModeEnum, Required

Possible values: Email; HTTPCallBack; MQOutput

CreateNotificationProfileRequest { CreateNotificationProfileRequestDetail { NotificationProfileSpecification { DeliveryChannelUserPreferenceName string at least 1 chars. up to 64 chars. Pattern: {.*[^\s].*}., Optional
CreateNotificationProfileRequest { CreateNotificationProfileRequestDetail { NotificationProfileSpecification { DeliveryFrequency DeliveryFrequencyEnum, Required

Possible values: Immediate; Hourly; Daily; Weekly

CreateNotificationProfileRequest { CreateNotificationProfileRequestDetail { NotificationProfileSpecification { DeliveryFormat DeliveryFormatEnum, Required

Possible values: XML, JSON

CreateNotificationProfileRequest { CreateNotificationProfileRequestDetail { NotificationProfileSpecification { StopDeliveryIndicator boolean, Required
END: CreateNotificationProfileRequest } CreateNotificationProfileRequestDetail } NotificationProfileSpecification /Aggregate
CreateNotificationProfileRequest { CreateNotificationProfileRequestDetail { InquiryReferenceText Aggregate, Optional

Records data that allows the customer to specify information to be linked to the request in order to support subsequent order reconciliation.

CreateNotificationProfileRequest { CreateNotificationProfileRequestDetail { InquiryReferenceText { CustomerReferenceText string up to 240 chars., Optional(Up to 5x)

A freeform reference string provided by the customer to be linked to the product in order to support subsequent order reconciliation.

END: CreateNotificationProfileRequest } CreateNotificationProfileRequestDetail } InquiryReferenceText /Aggregate
END: CreateNotificationProfileRequest } CreateNotificationProfileRequestDetail /Aggregate
END: CreateNotificationProfileRequest /Aggregate

Endpoint

Use the following endpoint for requesting this feature. The {version} is dependent on the underlying service delivering the response.

Endpoint (Monitoring)
POST https://direct.dnb.com/V{version}/monitoring/notificationprofiles

Testing

This operation will return a static set of results in the D&B Direct test environment (sandbox), regardless of the request parameters.

Feature Response

NOTE: The D&B Direct REST implementation uses the BadgerFish approach for JSON with some minor variations.

Specification

The following is a list of the possible data fields returned by this operation in the JSON response. Samples are provided for testing successful and failed retrieval, and to demonstrate the basic layout of a response. The data returned in samples may not represent actual values that this feature will deliver.

NOTE: The D-U-N-S Number returned in the response will be a nine-digit zero-padded, numeric value.

Sample Response (Create)
{"CreateNotificationProfileResponse": {
   "@ServiceVersionNumber": "4.0",
   "TransactionDetail":    {
      "ApplicationTransactionID": "ID_001",
      "ServiceTransactionID": "Id-774702ef5244685702fb003b-1",
      "TransactionTimestamp": "2013-09-26T13:01:12.041-04:00"
   },
   "TransactionResult":    {
      "SeverityText": "Information",
      "ResultID": "CM000",
      "ResultText": "Success"
   },
   "CreateNotificationProfileResponseDetail":    {
      "NotificationProfileDetail":       {
         "NotificationProfileName": "Notification_Profile_Email_01",
         "NotificationProfileID": 704
      },
      "InquiryReferenceText": {"CustomerReferenceText": ["Notification_Profile_Email_01"]}
   }
}}
Name Characteristics
CreateNotificationProfileResponse Aggregate
CreateNotificationProfileResponse@ServiceVersionNumber Attribute
CreateNotificationProfileResponse@xsi:schemaLocation Attribute
CreateNotificationProfileResponse { TransactionDetail Aggregate, Required

Records information necessary to process a particular request. Examples of a request is the ordering of a product.

CreateNotificationProfileResponse { TransactionDetail { ApplicationTransactionID string up to 64 chars., Optional

A number assigned by the calling application to uniquely identify this request.

CreateNotificationProfileResponse { TransactionDetail { ServiceTransactionID string up to 64 chars., Required

A number assigned by the D&B service to uniquely identify this transaction.

CreateNotificationProfileResponse { TransactionDetail { TransactionTimestamp DateTimestamp, Required

The date and time when this request was submitted or the date and time when the requesting intermediary, such as a workflow manager or service bus, sent the message to the D&B function, i.e., the date and time when the xml document was created by the requesting intermediary.

END: CreateNotificationProfileResponse } TransactionDetail /Aggregate
CreateNotificationProfileResponse { TransactionResult Aggregate, Required

An aggregate that can repeat multiple times to record the different outcomes of the transaction.

CreateNotificationProfileResponse { TransactionResult { SeverityText string up to 16 chars., Required

Text that records the criticality of the outcome, e.g., Information, Warning, Error, Fatal.

CreateNotificationProfileResponse { TransactionResult { ResultID string up to 32 chars., Required

An alphanumeric string that uniquely identifies the outcome of the transaction.

CreateNotificationProfileResponse { TransactionResult { ResultText string up to 512 chars., Optional

Text that explains the outcome of the transaction.

CreateNotificationProfileResponse { TransactionResult { ResultMessage Aggregate, Optional (Infinite)

An aggregate that can repeat multiple times to record textual data that expands on the ResultID and ResultText to provide additional information to the user regarding the status of the transaction. If the status implies that there is a problem this may also provide guidance to the user on how to address it.

CreateNotificationProfileResponse { TransactionResult { ResultMessage { ResultDescription string up to 512 chars., Required

Text that describes the additional information regarding the outcome of the transaction.

END: CreateNotificationProfileResponse } TransactionResult } ResultMessage /Aggregate
END: CreateNotificationProfileResponse } TransactionResult /Aggregate
CreateNotificationProfileResponse { CreateNotificationProfileResponseDetail Aggregate, Optional
CreateNotificationProfileResponse { CreateNotificationProfileResponseDetail { NotificationProfileDetail Aggregate, Required
CreateNotificationProfileResponse { CreateNotificationProfileResponseDetail { NotificationProfileDetail { NotificationProfileName string at least 1 chars. up to 64 chars. Pattern: {.*[^\s].*}., Required

A name that is provided by the user to the profile.

CreateNotificationProfileResponse { CreateNotificationProfileResponseDetail { NotificationProfileDetail { NotificationProfileID int, Required

A number that uniquely identifies a set of events and their thresholds, used to monitor a DUNS or a set of DUNS.

END: CreateNotificationProfileResponse } CreateNotificationProfileResponseDetail } NotificationProfileDetail /Aggregate
CreateNotificationProfileResponse { CreateNotificationProfileResponseDetail { InquiryReferenceText Aggregate, Optional

Records data that allows the customer to specify information to be linked to the request in order to support subsequent order reconciliation.

CreateNotificationProfileResponse { CreateNotificationProfileResponseDetail { InquiryReferenceText { CustomerReferenceText string up to 240 chars., Optional(Up to 5x)

A freeform reference string provided by the customer to be linked to the product in order to support subsequent order reconciliation.

END: CreateNotificationProfileResponse } CreateNotificationProfileResponseDetail } InquiryReferenceText /Aggregate
END: CreateNotificationProfileResponse } CreateNotificationProfileResponseDetail /Aggregate
END: CreateNotificationProfileResponse /Aggregate

Response Codes & Error Handling

Successful service requests will return a CM000 response code in the TransactionResult ResultID field. Otherwise, one of the D&B Direct standard response codes will be returned.

This operation may return the following response codes: CM002, CM004, CM007, CM023, SC001-SC009.

D&B Direct 2.0 API requests are provided on a metered basis; and may require entitlement prior to use in the production environment. In addition, a concurrency limit (QPS) is monitored to ensure that it is not exceeded. An error code will be returned in the event that a transaction is throttled.

While this operation is provided on a metered basis, usage is tracked; however, no billing for successful calls is recorded.

Operation-specific supplemental response code explanations:

Feature Notes

The DeliveryChannelUserPreferenceName parameter value should match the PreferenceSpecification.PreferenceName value that was used to create the User Preference.

NOTE: When the HTTPCallBack delivery mode is specified, the corresponding User Preference must include values for both the Credentials.UserID and Credentials.Password, as these fields will be supplied in the header when the call back is performed.

What to do Next