const response = await fetch('https://api.tendocs.com/ai/v1/tasks/compare', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"comparisondocument": {
"$content-type": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
"$content": "UEsDBBQAAAgIAJMrVV...[[Base64 Encoded File]]"
},
"sourcedocument": {
"$content-type": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
"$content": "UEsDBBQAAAgIAJMrVV...[[Base64 Encoded File]]"
},
"configuration": {
"profession": "Lawyer",
"Keys": {
"example_key1": "example_key_value1",
"example_key2": "example_key_value2"
}
}
}),
});
const data = await response.json();