Skip to main content

getICollectionRowsByMarker

Getting all records from the collection.

IntegrationCollections.getICollectionRowsByMarker(marker, langCode)

const result = await IntegrationCollections.getICollectionRowsByMarker('test_collection');
Schema

marker:* string
Collection text identifier
example: test_collection

langCode: string
Language code
example: en_US

Example return:

{
"items": [
{
"id": 2,
"entityId": null,
"entityType": null,
"createdDate": "2025-01-30T01:28:19.906Z",
"updatedDate": "2025-01-30T01:28:19.906Z",
"formData": [{ "marker": "c_marker", "type": "string", "value": "Value" }],
"attributeSetIdentifier": null,
},
],
"total": 1,
}
Schema

total: number
Total number of found records
example: 100

items: ICollectionRow[]
Object identifier
example: 2