POST api/ACMCards_IB2?isRadioPath={isRadioPath}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| isRadioPath | boolean |
Required |
Body Parameters
Collection of ACMCard| Name | Description | Type | Additional information |
|---|---|---|---|
| Account | string |
None. |
|
| CardSLNO | integer |
None. |
|
| CardNo | string |
None. |
|
| CardDescription | string |
None. |
|
| FaciltyCode | string |
None. |
|
| AccessGroupNo | integer |
None. |
|
| Enabled | boolean |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Account": "sample string 1",
"CardSLNO": 2,
"CardNo": "sample string 3",
"CardDescription": "sample string 4",
"FaciltyCode": "sample string 5",
"AccessGroupNo": 6,
"Enabled": true
},
{
"Account": "sample string 1",
"CardSLNO": 2,
"CardNo": "sample string 3",
"CardDescription": "sample string 4",
"FaciltyCode": "sample string 5",
"AccessGroupNo": 6,
"Enabled": true
}
]
application/xml, text/xml
Sample:
<ArrayOfACMCard xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GeminiiSecureWebAPI.Model">
<ACMCard>
<AccessGroupNo>6</AccessGroupNo>
<Account>sample string 1</Account>
<CardDescription>sample string 4</CardDescription>
<CardNo>sample string 3</CardNo>
<CardSLNO>2</CardSLNO>
<Enabled>true</Enabled>
<FaciltyCode>sample string 5</FaciltyCode>
</ACMCard>
<ACMCard>
<AccessGroupNo>6</AccessGroupNo>
<Account>sample string 1</Account>
<CardDescription>sample string 4</CardDescription>
<CardNo>sample string 3</CardNo>
<CardSLNO>2</CardSLNO>
<Enabled>true</Enabled>
<FaciltyCode>sample string 5</FaciltyCode>
</ACMCard>
</ArrayOfACMCard>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of DBResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Account | string |
None. |
|
| SLNo | integer |
None. |
|
| ErrorCode | integer |
None. |
|
| ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Account": "sample string 1",
"SLNo": 2,
"ErrorCode": 3,
"ErrorMessage": "sample string 4"
},
{
"Account": "sample string 1",
"SLNo": 2,
"ErrorCode": 3,
"ErrorMessage": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfDBResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GeminiiSecureWebAPI.Model">
<DBResponse>
<Account>sample string 1</Account>
<ErrorCode>3</ErrorCode>
<ErrorMessage>sample string 4</ErrorMessage>
<SLNo>2</SLNo>
</DBResponse>
<DBResponse>
<Account>sample string 1</Account>
<ErrorCode>3</ErrorCode>
<ErrorMessage>sample string 4</ErrorMessage>
<SLNo>2</SLNo>
</DBResponse>
</ArrayOfDBResponse>