12-23-2022, 11:11 AM
var settings = {
"url": "https://app.bdb.ai/ingestion/dataIngestion",
"method": "POST",
"timeout": 0,
"headers": {
"IngestionId": "Enter ingestion id ",
"IngestionSecret": "Enter ingestion secret",
"Content-Type": "application/json"
},
"data": JSON.stringify([
{
"employee_name": a
}
]),
};
$.ajax(settings).done(function (response) {
console.log(response);
});
"url": "https://app.bdb.ai/ingestion/dataIngestion",
"method": "POST",
"timeout": 0,
"headers": {
"IngestionId": "Enter ingestion id ",
"IngestionSecret": "Enter ingestion secret",
"Content-Type": "application/json"
},
"data": JSON.stringify([
{
"employee_name": a
}
]),
};
$.ajax(settings).done(function (response) {
console.log(response);
});