getICollectionRowsByMarker
Récupérer tous les enregistrements de la collection.
IntegrationCollections.getICollectionRowsByMarker(marker, langCode)
const result = await IntegrationCollections.getICollectionRowsByMarker('test_collection');
Schéma
marker:* chaîne de caractères
Identifiant de texte de la collection
exemple : test_collection
langCode: chaîne de caractères
Code de langue
exemple : en_US
Exemple de retour :
{
"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,
}
Schéma
total: nombre
Nombre total d'enregistrements trouvés
exemple : 100
items: ICollectionRow[]
Identifiant de l'objet
exemple : 2
.