getICollectionRowByMarkerAndId
الحصول على سجل واحد من المجموعة.
الوصف
ترجع Promise التي تحل إلى كائن ICollectionRow.
IntegrationCollections.getICollectionRowByMarkerAndId(
marker*,
id*,
langCode
);
مخطط المعلمات
المخطط
marker(required): string
معرف نص المجموعة
مثال: "collection1"
id(required): number
معرف سجل المجموعة
مثال: 1
langCode: string
رمز اللغة. الافتراضي: "en_US"
مثال: "en_US"
أمثلة
مثال بسيط
const result = await IntegrationCollections.getICollectionRowByMarkerAndId('test_collection', 1);
مثال مع السمات
const result = await IntegrationCollections.getICollectionRowByMarkerAndId('test_collection', 1, 'en_US');
مثال على الاستجابة
{
"id": 2,
"entityId": null,
"entityType": null,
"createdDate": "2025-02-25T07:05:53.057Z",
"updatedDate": "2025-02-25T07:05:53.057Z",
"formData": [
{
"marker": "naimenovanie_1",
"type": "string",
"value": "Наименование"
}
],
"attributeSetIdentifier": null,
"total": "1"
}
مخطط الاستجابة
المخطط: ICollectionRow
id: number
معرف الكائن.
مثال: 1
createdDate: string
تاريخ إنشاء السجل.
مثال: "2023-01-01T00:00:00Z"
updatedDate: string
تاريخ آخر تحديث للسجل.
مثال: "2023-01-02T00:00:00Z"
collectionId: number | null
معرف المجموعة المرتبط بسطر المجموعة.
مثال: "product", "order", "etc"
formData: ICollectionFormData[]
مصفوفة من كائنات بيانات النموذج المرتبطة بسطر المجموعة.
مثال:
[
{
"marker": "name_1",
"type": "string",
"value": "Value"
}
]
entityType: string | null
نوع الكائن المرتبط بسطر المجموعة.
مثال: "product", "order", "etc"
entityId: number | null
معرف الكائن المرتبط بسطر المجموعة.
مثال: 12345
attributeSetIdentifier: string | null
معرف مجموعة السمات المستخدمة بواسطة النموذج المرتبط بسطر المجموعة، أو null إذا لم يكن ذلك قابلاً للتطبيق.
مثال: "attributeSet1" أو null
total: string
إجمالي العدد.
مثال: "1"