[dummy title body text appended to avoid empty title body]
Bergi9 replied
It get consumed but the attachment column didn’t update.
```ts
import {Api} from ‘nocodb-sdk’;
…
nocoDbApi = new Api({
baseUrl: ‘https://example.com/’,
headers: {
‘xc-token’: ‘someToken’
}
});
…
await nocoDbApi.dbTableRow.update(
‘noco’,
‘someProject’,
‘someTable’,
‘someID’,
{
‘someAttachmentColumn’: [
{
url: https://example.com/someimage.png
,
mimetype: ‘image/png’,
}
]
});
```
pranavxc replied