getICollectionRowByMarkerAndId
Obtendo um registro da coleção.
IntegrationCollections.getICollectionRowByMarkerAndId(marker, id, langCode)
const result = await IntegrationCollections.getICollectionRowByMarkerAndId('test_collection', 1);
Esquema
marker:* string
Identificador de texto da coleção
exemplo: test_collection
id:* number
Identificador do registro da coleção
exemplo: 1
langCode: string
Códig da língua
exemplo: en_US
Exemplo de retorno:
{
"id": 1764,
"createdDate": "2025-01-26T17:17:23.013Z",
"updatedDate": "2025-01-26T17:17:23.013Z",
"collectionId": 1,
"langCode": "en_US",
"formData": {
"en_US": [
{
"marker": "marker_1",
"type": "string",
"value": "Title"
}
]
}
}
Esquema
id: number
Identificador do objeto
exemplo: 1764
createdDate: string($date-time)
Data de criação do registro na coleção
updatedDate: string($date-time)
Data de modificação do objeto
collectionId: number
Identificador do objeto da coleção
exemplo: 1
langCode: string
Códig da língua em que o registro na coleção foi criado
exemplo: en_US
formData: FormDataLangType
Dados enviados pelo formulário anexado à coleção
exemplo:
{
"en_US": [
{
"marker": "marker_1",
"type": "string",
"value": "Title"
}
]
}