GET api/v1/Users/UserCards?EmailAddress={EmailAddress}&IncludeDeleted={IncludeDeleted}&FacilityCode={FacilityCode}
Returns list of cards for a given user by the User Email Address
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| EmailAddress | string |
Required |
|
| IncludeDeleted | boolean |
Default value is False |
|
| FacilityCode | integer |
Default value is -1 |
Body Parameters
None.
Response Information
Resource Description
PersonCardAndUserIdViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
None. |
|
| Cards | Collection of PersonCardViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserId": "5c05f2d3-eb00-4c98-93b8-34cdf4dc528d",
"Cards": [
{
"PersonCardId": "d95c2543-662d-4b01-9aab-187d5aaee56c",
"CardName": "sample string 2",
"CardId": "fc55446d-eaac-4cca-ba56-1f87133cd7b5",
"CardType": 4,
"CardACSystemId": "644c4b4f-be98-4c51-8f94-67e97d546805",
"CardACSystemName": "sample string 6",
"InternalCardNumber": 7,
"ExternalCardNumber": "sample string 8",
"CardSerialNumber": 1,
"FacilityCode": 9,
"IssueCode": 10,
"PIN": "sample string 11",
"Deleted": true,
"HidInvitationCode": "sample string 13",
"InvitationRedeemedDateTime": "2025-12-13T01:58:37.709742+00:00",
"DateInserted": "2025-12-13T01:58:37.709742+00:00",
"DateUpdated": "2025-12-13T01:58:37.709742+00:00",
"CardActivationStartDateTime": "2025-12-13T01:58:37.709742+00:00",
"CardDeactivationStartDateTime": "2025-12-13T01:58:37.709742+00:00",
"CardUserFlags": 1,
"EncryptedMobileCredentials": [
{
"MobileKeySetId": "99a95f12-4ddc-4778-91e3-f877f93c55a8",
"KeyIndex": 2,
"EncryptedCredential": "sample string 3"
},
{
"MobileKeySetId": "99a95f12-4ddc-4778-91e3-f877f93c55a8",
"KeyIndex": 2,
"EncryptedCredential": "sample string 3"
}
],
"CredentialType": 1
},
{
"PersonCardId": "d95c2543-662d-4b01-9aab-187d5aaee56c",
"CardName": "sample string 2",
"CardId": "fc55446d-eaac-4cca-ba56-1f87133cd7b5",
"CardType": 4,
"CardACSystemId": "644c4b4f-be98-4c51-8f94-67e97d546805",
"CardACSystemName": "sample string 6",
"InternalCardNumber": 7,
"ExternalCardNumber": "sample string 8",
"CardSerialNumber": 1,
"FacilityCode": 9,
"IssueCode": 10,
"PIN": "sample string 11",
"Deleted": true,
"HidInvitationCode": "sample string 13",
"InvitationRedeemedDateTime": "2025-12-13T01:58:37.709742+00:00",
"DateInserted": "2025-12-13T01:58:37.709742+00:00",
"DateUpdated": "2025-12-13T01:58:37.709742+00:00",
"CardActivationStartDateTime": "2025-12-13T01:58:37.709742+00:00",
"CardDeactivationStartDateTime": "2025-12-13T01:58:37.709742+00:00",
"CardUserFlags": 1,
"EncryptedMobileCredentials": [
{
"MobileKeySetId": "99a95f12-4ddc-4778-91e3-f877f93c55a8",
"KeyIndex": 2,
"EncryptedCredential": "sample string 3"
},
{
"MobileKeySetId": "99a95f12-4ddc-4778-91e3-f877f93c55a8",
"KeyIndex": 2,
"EncryptedCredential": "sample string 3"
}
],
"CredentialType": 1
}
]
}
application/xml, text/xml
Sample:
<PersonCardAndUserIdViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers">
<Cards>
<PersonCardViewModel>
<CardACSystemId>644c4b4f-be98-4c51-8f94-67e97d546805</CardACSystemId>
<CardACSystemName>sample string 6</CardACSystemName>
<CardActivationStartDateTime>2025-12-13T01:58:37.709742+00:00</CardActivationStartDateTime>
<CardDeactivationStartDateTime>2025-12-13T01:58:37.709742+00:00</CardDeactivationStartDateTime>
<CardId>fc55446d-eaac-4cca-ba56-1f87133cd7b5</CardId>
<CardName>sample string 2</CardName>
<CardSerialNumber>1</CardSerialNumber>
<CardType>4</CardType>
<CardUserFlags>ActiveCardholderRecord</CardUserFlags>
<CredentialType>Proximity</CredentialType>
<DateInserted>2025-12-13T01:58:37.709742+00:00</DateInserted>
<DateUpdated>2025-12-13T01:58:37.709742+00:00</DateUpdated>
<EncryptedMobileCredentials>
<EncryptedCredentialData>
<EncryptedCredential>sample string 3</EncryptedCredential>
<KeyIndex>2</KeyIndex>
<MobileKeySetId>99a95f12-4ddc-4778-91e3-f877f93c55a8</MobileKeySetId>
</EncryptedCredentialData>
<EncryptedCredentialData>
<EncryptedCredential>sample string 3</EncryptedCredential>
<KeyIndex>2</KeyIndex>
<MobileKeySetId>99a95f12-4ddc-4778-91e3-f877f93c55a8</MobileKeySetId>
</EncryptedCredentialData>
</EncryptedMobileCredentials>
<ExternalCardNumber>sample string 8</ExternalCardNumber>
<FacilityCode>9</FacilityCode>
<HidInvitationCode>sample string 13</HidInvitationCode>
<InternalCardNumber>7</InternalCardNumber>
<InvitationRedeemedDateTime>2025-12-13T01:58:37.709742+00:00</InvitationRedeemedDateTime>
<IssueCode>10</IssueCode>
<PIN>sample string 11</PIN>
<PersonCardId>d95c2543-662d-4b01-9aab-187d5aaee56c</PersonCardId>
</PersonCardViewModel>
<PersonCardViewModel>
<CardACSystemId>644c4b4f-be98-4c51-8f94-67e97d546805</CardACSystemId>
<CardACSystemName>sample string 6</CardACSystemName>
<CardActivationStartDateTime>2025-12-13T01:58:37.709742+00:00</CardActivationStartDateTime>
<CardDeactivationStartDateTime>2025-12-13T01:58:37.709742+00:00</CardDeactivationStartDateTime>
<CardId>fc55446d-eaac-4cca-ba56-1f87133cd7b5</CardId>
<CardName>sample string 2</CardName>
<CardSerialNumber>1</CardSerialNumber>
<CardType>4</CardType>
<CardUserFlags>ActiveCardholderRecord</CardUserFlags>
<CredentialType>Proximity</CredentialType>
<DateInserted>2025-12-13T01:58:37.709742+00:00</DateInserted>
<DateUpdated>2025-12-13T01:58:37.709742+00:00</DateUpdated>
<EncryptedMobileCredentials>
<EncryptedCredentialData>
<EncryptedCredential>sample string 3</EncryptedCredential>
<KeyIndex>2</KeyIndex>
<MobileKeySetId>99a95f12-4ddc-4778-91e3-f877f93c55a8</MobileKeySetId>
</EncryptedCredentialData>
<EncryptedCredentialData>
<EncryptedCredential>sample string 3</EncryptedCredential>
<KeyIndex>2</KeyIndex>
<MobileKeySetId>99a95f12-4ddc-4778-91e3-f877f93c55a8</MobileKeySetId>
</EncryptedCredentialData>
</EncryptedMobileCredentials>
<ExternalCardNumber>sample string 8</ExternalCardNumber>
<FacilityCode>9</FacilityCode>
<HidInvitationCode>sample string 13</HidInvitationCode>
<InternalCardNumber>7</InternalCardNumber>
<InvitationRedeemedDateTime>2025-12-13T01:58:37.709742+00:00</InvitationRedeemedDateTime>
<IssueCode>10</IssueCode>
<PIN>sample string 11</PIN>
<PersonCardId>d95c2543-662d-4b01-9aab-187d5aaee56c</PersonCardId>
</PersonCardViewModel>
</Cards>
<UserId>5c05f2d3-eb00-4c98-93b8-34cdf4dc528d</UserId>
</PersonCardAndUserIdViewModel>