My question as below:
I use this script:
Let attachment = await input.fileAsync('Pls upload the cargo packing list')
Then I want to create a new record with one field as MultipleAttachment.
I want this MultipleAttachment field having the attachment input above by input.fileAsync.
As per the API, the MultipleAttachment written format as below:
Array<{
url: string,
filename?: string,
}>
How could I achieve my goal? I don’t know how can I have the url of the uploaded file by fileAsync.
Thanks
