GET api/efiscal/datatypes/all?type={type}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| type | string |
Required |
Body Parameters
None.
Response Information
Resource Description
EFSimpleTypes| Name | Description | Type | Additional information |
|---|---|---|---|
| SimpleType | Collection of EFSimpleType |
None. |
Response Formats
application/json, text/json
Sample:
{
"SimpleType": [
{
"SimpleTypeName": "sample string 1",
"Items": [
{
"Key": "sample string 1",
"Value": "sample string 2"
},
{
"Key": "sample string 1",
"Value": "sample string 2"
}
]
},
{
"SimpleTypeName": "sample string 1",
"Items": [
{
"Key": "sample string 1",
"Value": "sample string 2"
},
{
"Key": "sample string 1",
"Value": "sample string 2"
}
]
}
]
}
application/xml, text/xml
Sample:
<SimpleTypes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SimpleType Name="sample string 1">
<Item Key="sample string 1" Value="sample string 2" />
<Item Key="sample string 1" Value="sample string 2" />
</SimpleType>
<SimpleType Name="sample string 1">
<Item Key="sample string 1" Value="sample string 2" />
<Item Key="sample string 1" Value="sample string 2" />
</SimpleType>
</SimpleTypes>