All Products
Search
Document Center

Data Management:GetTaskFlowNotification

Last Updated:Oct 21, 2024

Queries the notification settings for task flows.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
TidlongNo

The ID of the tenant.

Note : To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see View information about the current tenant.
3***
DagIdlongYes

The ID of the task flow. You can call the ListTaskFlow or ListLhTaskFlowAndScenario operation to query the task flow ID.

15***

Response parameters

ParameterTypeDescriptionExample
object
RequestIdstring

The ID of the request. You can use the ID to query logs and troubleshoot issues.

F19D575F-EBEA-5683-AFA3-A8F6D9A7DE03
ErrorCodestring

The error code returned if the request failed.

UnknownError
ErrorMessagestring

The error message returned if the request failed.

UnknownError
Successboolean

Indicates whether the request was successful. Valid values:

  • true: The request was successful.
  • false: The request failed.
true
Notificationobject

The notification settings specified by the user.

DagNotificationFailboolean

Indicates whether notifications for failed task flows are enabled. Valid values:

  • true: enabled
  • false: disabled
true
DagNotificationSuccessboolean

Indicates whether notifications for successful task flows are enabled. Valid values:

  • true: enabled
  • false: disabled
true
DagNotificationSlaboolean

Indicates whether service level agreement (SLA) global notifications for task flows are enabled. Valid values:

  • true: enabled
  • false: disabled
true

Examples

Sample success responses

JSONformat

{
  "RequestId": "F19D575F-EBEA-5683-AFA3-A8F6D9A7DE03",
  "ErrorCode": "UnknownError",
  "ErrorMessage": "UnknownError",
  "Success": true,
  "Notification": {
    "DagNotificationFail": true,
    "DagNotificationSuccess": true,
    "DagNotificationSla": true
  }
}

Error codes

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
No change history