GetAllCardTypes
Overview
Request Information
Method
GET - api/Card/GET api/Card/GetAllCardTypes
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CardTypeViewModel
Name | Description | Type | Additional information |
---|---|---|---|
CardTypeId |
Represents the PK of an existing Card Type in BluSKY (static list) |
globally unique identifier |
None. |
Description |
Represents the description of an existing Card Type in BluSKY (static list) |
string |
None. |
Response Formats
JSON
[ { "CardTypeId": "d04c6b57-9ddd-4863-afcd-45547ad7c42f", "Description": "sample string 2" }, { "CardTypeId": "d04c6b57-9ddd-4863-afcd-45547ad7c42f", "Description": "sample string 2" } ]
XML
<ArrayOfCardTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BluSKYWebAPI.Controllers"> <CardTypeViewModel> <CardTypeId>d04c6b57-9ddd-4863-afcd-45547ad7c42f</CardTypeId> <Description>sample string 2</Description> </CardTypeViewModel> <CardTypeViewModel> <CardTypeId>d04c6b57-9ddd-4863-afcd-45547ad7c42f</CardTypeId> <Description>sample string 2</Description> </CardTypeViewModel> </ArrayOfCardTypeViewModel>