Hi,
Right now storing documents into live link is working fine, but i have some extra metadata i like to add to my document so i will be able to search for the document when needed. See below my sample code to test this: Metadata CreateMetadata()Metadata metadata = new Metadata();return metadata;private
{
attribute.DisplayName =
attribute.Type =
attribute.Key =
attribute.Values =
value.Description =
value.Key =
values[0] = value;
attribute.Values = values;
attributeGroups[0] = attribute;
}
AttributeGroup[] CreateAttributeGroup()AttributeGroup[] attributeGroups = new AttributeGroup[1];AttributeGroup attribute = new AttributeGroup();"CaseID";"String";"CaseID";new DataValue[1];DataValue[] values = new DataValue[1];DataValue value = new DataValue();"XXXXX-XXXXX";"CaseId";return attributeGroups;I add the metadata to my request and then i receive the following error:
{"Unknown AttributeGroup types {'String'}."}
Can anyone tell what kind of type i have to fill in? or give me an example?
Thanks in advance!
Regards,
Dennis
private
{
metadata.AttributeGroups = CreateAttributeGroup();
}