Last active
July 28, 2021 23:07
-
-
Save mb8z/923c916ec449390529a2c7b1bdcf6750 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const useDocty = require('@usedocty/node'); | |
const Docty = useDocty('{{API_KEY}}'); | |
const example = async () => { | |
await Docty.Consents.remove([ | |
{ user: '[email protected]', document: 'document1-example-uuid-here' }, | |
{ user: '[email protected]', document: 'document2-example-uuid-here' }, | |
{ user: '[email protected]', document: 'document1-example-uuid-here' }, | |
{ user: '[email protected]', document: 'document2-example-uuid-here' }, | |
]); | |
}; | |
example(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment