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 |
|---|---|---|---|
| id | globally unique identifier |
None. |
|
| type | string |
Required String length: inclusive between 0 and 100 |
|
| description | string |
Required |
|
| active | boolean |
Required |
Response Formats
application/json, text/json
Sample:
[
{
"id": "c5ecfdaa-01ad-4475-8b04-fdf3ea37092f",
"type": "sample string 2",
"description": "sample string 3",
"active": true
},
{
"id": "c5ecfdaa-01ad-4475-8b04-fdf3ea37092f",
"type": "sample string 2",
"description": "sample string 3",
"active": true
}
]
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>
<description>sample string 3</description>
<id>c5ecfdaa-01ad-4475-8b04-fdf3ea37092f</id>
<type>sample string 2</type>
</io_card_type>
<io_card_type>
<active>true</active>
<description>sample string 3</description>
<id>c5ecfdaa-01ad-4475-8b04-fdf3ea37092f</id>
<type>sample string 2</type>
</io_card_type>
</ArrayOfio_card_type>