getICollectionById
Lấy bộ sưu tập theo id.
IntegrationCollections.getICollectionById(
id,
langCode
);
Ví dụ tối thiểu
const result = await IntegrationCollections.getICollectionById(1);
Ví dụ với các thuộc tính
const result = await IntegrationCollections.getICollectionById(1, 'en_US');
Sơ đồ tham số
Sơ đồ
id(bắt buộc): số
Mã bộ sưu tập
ví dụ: 1
langCode: chuỗi
Mã ngôn ngữ. Mặc định: "en_US"
ví dụ: "en_US"
Ví dụ phản hồi
{
"id": 1,
"identifier": "test_collection",
"formId": 2,
"localizeInfos": {
"title": "test_collection"
},
"attributeSetId": null,
"selectedAttributeMarkers": null
}