-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE] Add support for Data Verfication activity in Automation. #325
Comments
@JoernBerkefeld - no generic GET collection exists for this, so would need building into automation directly, not as a separete type. We could just nest to json to avoid issues, but would need to be clever about caching etc. thoughts? |
copying info in from other ticket: |
looks like a bigger task for 4.1? |
…ment of automation and verification
Closed by #1083. |
Is your feature request related to a problem? Please describe.
Unable to deploy the Data Verification Activity as part of my Automation.
Describe the solution you'd like
Be able to deploy the Data Verification Activity as part of my Automation deployment routine.
Describe alternatives you've considered
Manually creating and updating the activity through Automation Studio UI, or writing myself REST API requests.
Additional context
Tested myself and found out that there is an REST endpoint which allows to READ/CREATE/MODIFY the Data Verification Activities. More details below.
Endpoint:
/automation/v1/dataverifications/{id}
Supported Methods:
GET/POST/PATCH
Examples:
GET:
/automation/v1/dataverifications/{dataVerificationDefinitionId}
Response:
POST:
/automation/v1/dataverifications/
Request:
Response: Same as in GET Request
PATCH:
/automation/v1/dataverifications/{dataVerificationDefinitionId}
Request:
Response: Same as in GET and POST
The text was updated successfully, but these errors were encountered: