0
Why is this STATUS API not working?
New Here
,
/t5/acrobat-services-api-discussions/why-is-this-status-api-not-working/td-p/11858624
Feb 25, 2021
Feb 25, 2021
Copy link to clipboard
Copied
I'm trying to use the STATUS_API in my application, but it simply doesn't work. Am I doing it wrong or there anything more to it?
adobeDCView.registerCallback(
AdobeDC.View.Enum.CallbackType.STATUS_API,
function (metaData) {
/* Resolve or reject response in given format */
/* Status callback success case */
return new Promise((resolve, reject) => {
resolve({
code: AdobeDC.View.Enum.ApiResponseCode.SUCCESS,
});
});
/* Status callback file modified case */
return new Promise((resolve, reject) => {
resolve({
code: AdobeDC.View.Enum.ApiResponseCode.FILE_MODIFIED,
data: {
modifiedBy: {
name: "iiii",
mail: "mail@mail.com",
}
}
});
});
},
{
filePollFrequency: 10,
keepPolling: true,
}
);
Even after making changes, there is no update on front end, no error on console either
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Adobe Employee
,
/t5/acrobat-services-api-discussions/why-is-this-status-api-not-working/m-p/11858734#M1338
Feb 26, 2021
Feb 26, 2021
Copy link to clipboard
Copied
Thanks for using PDF Embed API. As suggested in the documentation, you have to write either of the return statement based on your scenario.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
dreat
AUTHOR
New Here
,
/t5/acrobat-services-api-discussions/why-is-this-status-api-not-working/m-p/11858814#M1340
Feb 26, 2021
Feb 26, 2021
Copy link to clipboard
Copied
Hi @Shubhanshu Dixit thanks for the update, I got that.
Also, can I use status_api without the save_api? Or is it required to save the file before status_api can see the changes?
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
LATEST
/t5/acrobat-services-api-discussions/why-is-this-status-api-not-working/m-p/11859556#M1341
Feb 26, 2021
Feb 26, 2021
Copy link to clipboard
Copied
They work together. The save_api informs the status_api.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

