postEntries

Operation Id:
entries/entries/post [Official Documentaction]
Methods

  • shopId Integer
  • date String
  • visible 'y'|'n'
  • visibleOnSitesList Array<Object>
  • products Array<Object>
  • pictureData Object
  • langs Array<Object>
  • titleLinkType 'fullContentLink'|'givenUrlLink'|'noLink'
  • link String
  • langId String
  • title String
  • shortDescription String
  • longDescription String
  • blogUrl String
  • newsUrl String
Examples

This function posts an entry with specific language, shop ID, short and long descriptions, visibility, date, title link type, and title.

const result = await idosellRequest.postEntries
	.langId("pol")
	.shopId(1)
	.shortDescription("entry")
	.longDescription("My Entry")
	.visible("y")
	.date("2023-12-18")
	.titleLinkType("fullContentLink")
	.title("title")
	.exec()