Get Workflow
| customerprofiles_get_workflow | R Documentation | 
Get details of specified workflow¶
Description¶
Get details of specified workflow.
Usage¶
customerprofiles_get_workflow(DomainName, WorkflowId)
Arguments¶
| DomainName | [required] The unique name of the domain. | 
| WorkflowId | [required] Unique identifier for the workflow. | 
Value¶
A list with the following syntax:
list(
  WorkflowId = "string",
  WorkflowType = "APPFLOW_INTEGRATION",
  Status = "NOT_STARTED"|"IN_PROGRESS"|"COMPLETE"|"FAILED"|"SPLIT"|"RETRY"|"CANCELLED",
  ErrorDescription = "string",
  StartDate = as.POSIXct(
    "2015-01-01"
  ),
  LastUpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  Attributes = list(
    AppflowIntegration = list(
      SourceConnectorType = "Salesforce"|"Marketo"|"Zendesk"|"Servicenow"|"S3",
      ConnectorProfileName = "string",
      RoleArn = "string"
    )
  ),
  Metrics = list(
    AppflowIntegration = list(
      RecordsProcessed = 123,
      StepsCompleted = 123,
      TotalSteps = 123
    )
  )
)
Request syntax¶
svc$get_workflow(
  DomainName = "string",
  WorkflowId = "string"
)