GET api/iocardtypeapi/iocardtypes?active={active}&lastUpdate={lastUpdate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| active | boolean |
None. |
|
| lastUpdate | date |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of IOCardTypeViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| active | boolean |
Required |
|
| code | integer |
Required |
|
| description | string |
Required |
|
| id | globally unique identifier |
None. |
|
| type | string |
Required String length: inclusive between 0 and 100 |
Response Formats
application/json, text/json
Sample:
[
{
"active": true,
"code": 2,
"description": "sample string 3",
"id": "74400af2-d779-42d4-96ab-23b871e581c2",
"type": "sample string 5"
},
{
"active": true,
"code": 2,
"description": "sample string 3",
"id": "74400af2-d779-42d4-96ab-23b871e581c2",
"type": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfio_card_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
<io_card_type>
<active>true</active>
<code>2</code>
<description>sample string 3</description>
<id>74400af2-d779-42d4-96ab-23b871e581c2</id>
<type>sample string 5</type>
</io_card_type>
<io_card_type>
<active>true</active>
<code>2</code>
<description>sample string 3</description>
<id>74400af2-d779-42d4-96ab-23b871e581c2</id>
<type>sample string 5</type>
</io_card_type>
</ArrayOfio_card_type>