GET api/Reports/CustomFields
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CustomFieldsReportsDTOName | Description | Type | Additional information |
---|---|---|---|
NombreInterno | string |
None. |
|
ExternalId | string |
None. |
|
Items | Collection of ItemsDTO |
None. |
Response Formats
application/json, text/json
Sample:
[ { "NombreInterno": "sample string 1", "ExternalId": "sample string 2", "Items": [ { "ExternalId": "sample string 1", "Name": "sample string 2", "Code": "sample string 3", "Deleted": true }, { "ExternalId": "sample string 1", "Name": "sample string 2", "Code": "sample string 3", "Deleted": true } ] }, { "NombreInterno": "sample string 1", "ExternalId": "sample string 2", "Items": [ { "ExternalId": "sample string 1", "Name": "sample string 2", "Code": "sample string 3", "Deleted": true }, { "ExternalId": "sample string 1", "Name": "sample string 2", "Code": "sample string 3", "Deleted": true } ] } ]
application/xml, text/xml
Sample:
<ArrayOfCustomFieldsReportsDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Captio.Api.Dto"> <CustomFieldsReportsDTO> <ExternalId>sample string 2</ExternalId> <Items> <ItemsDTO> <Code>sample string 3</Code> <Deleted>true</Deleted> <ExternalId>sample string 1</ExternalId> <Name>sample string 2</Name> </ItemsDTO> <ItemsDTO> <Code>sample string 3</Code> <Deleted>true</Deleted> <ExternalId>sample string 1</ExternalId> <Name>sample string 2</Name> </ItemsDTO> </Items> <NombreInterno>sample string 1</NombreInterno> </CustomFieldsReportsDTO> <CustomFieldsReportsDTO> <ExternalId>sample string 2</ExternalId> <Items> <ItemsDTO> <Code>sample string 3</Code> <Deleted>true</Deleted> <ExternalId>sample string 1</ExternalId> <Name>sample string 2</Name> </ItemsDTO> <ItemsDTO> <Code>sample string 3</Code> <Deleted>true</Deleted> <ExternalId>sample string 1</ExternalId> <Name>sample string 2</Name> </ItemsDTO> </Items> <NombreInterno>sample string 1</NombreInterno> </CustomFieldsReportsDTO> </ArrayOfCustomFieldsReportsDTO>