OPEN Ai Extract PDF Errors! Webcontentlink issues

AussiePete

Member
Your Workflow URL
https://connect.pabbly.com/workflow/mapping/IjU3NjcwNTZmMDYzNDA0MzA1MjY5NTUzYzUxMzci_pc
Consent to Access & Modify
I authorize Pabbly Support to log in to my account and make changes to the specified workflow for troubleshooting.
View attachment 65766
I cannot succeed in obtaining the PDF. I have tried Dropbox, Onedrive, Google Drive URL LInk to the PDF. I have used very possible link configuration. I just get continuous errors. have been tryin got solve this for 48 hours.
 

Himesh

Active member
1773312633525.png

Try this action. FYI I'm not from Pabbly Connect team, just a freelancer who helps other Pabbly users.
 

Himesh

Active member
Your schema is incorrect

it should be in this format

{
"name": "expense_data",
"schema": {
"type": "object",
"properties": {
"editions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Edition": { "type": "string" },
"Quantity": { "type": "number" },
"TotalAmount": { "type": "number" }
},
"required": ["Edition", "Quantity", "TotalAmount"]
}
},
"notes": {
"type": "string"
}
},
"required": ["editions"],
"additionalProperties": false
},
"strict": true
}
and check your file extension use above mentioned extension instead of ".bin"
 

Himesh

Active member
{
"type": "object",
"properties": {
"editions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"price": { "type": "number" }
},
"required": ["name", "price"],
"additionalProperties": false
}
}
},
"required": ["editions"],
"additionalProperties": false
}
Try this. If still not works you can dm me I'll help you out with this
 
Top