getEntries

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

  • entryId Integer
  • langId String
Examples

This function retrieves entries with the language ID set as "pol".

Loading editor...

const result = await idosellRequest.getEntries
	.langId("pol")
	.exec();

This function fetches the entry with the entryId 1308134131 from the collection of entries named "getEntries".

Loading editor...

const result = await idosellRequest.getEntries
	.entryId(1308134131)
	.exec();