Operation Id:
entries/entries/put [Official Documentaction]
Methods
- entryId Integer
- shopId Integer
- date String
- visible 'y'|'n'
- visibleOnSitesList Array<Object>
- products Array<Object>
- pictureData Object
- deletePicture 'y'|'n'
- langs Array<Object>
- titleLinkType 'fullContentLink'|'givenUrlLink'|'noLink'
- link String
Examples
This function updates the visibility status of an entry with the entry ID 1308134189 at the shop with ID 1 to "n" on the date "2023-12-21".
Loading editor...
const result = await idosellRequest.putEntries .entryId(1308134189) .date("2023-12-21") .shopId(1) .visible("n") .exec();