GET api/v1/Badges
Returns a list of Badge Templates that the API token has rights to view
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of BadgeBasicViewModelName | Description | Type | Additional information |
---|---|---|---|
BadgeTemplateId |
Represents the PK of the Badge template |
globally unique identifier |
None. |
ACSystemId |
Represents the PK of the Access Control System for the badge template |
globally unique identifier |
None. |
ACSystemName |
Represents the name of the Access Control System for the badge template |
string |
None. |
CompanyId |
Represents the nullalbe PK of the company (if applicable) that owns the badge template. Null means this is a system-wide template. |
globally unique identifier |
None. |
CompanyName |
Represents the name of the company (if applicable) that owns the badge template. |
string |
None. |
Name |
Represents the name of the Badge template |
string |
None. |
BadgeTemplateTypeId |
Represents type of badge template - visitor, employee, visiting employee, vendor |
globally unique identifier |
None. |
Deleted |
Represents the deleted status of the badge template |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "BadgeTemplateId": "fb53214c-53b8-4ff8-8b05-7f8a86325297", "ACSystemId": "778d031e-4e7a-4529-9081-e9b8146c20cb", "ACSystemName": "sample string 2", "CompanyId": "11ef4114-6ce6-49b7-bef1-49dc1ddf1ae8", "CompanyName": "sample string 3", "Name": "sample string 4", "BadgeTemplateTypeId": "003f378c-a3be-4d6b-a748-fcb2d51b99fe", "Deleted": true }, { "BadgeTemplateId": "fb53214c-53b8-4ff8-8b05-7f8a86325297", "ACSystemId": "778d031e-4e7a-4529-9081-e9b8146c20cb", "ACSystemName": "sample string 2", "CompanyId": "11ef4114-6ce6-49b7-bef1-49dc1ddf1ae8", "CompanyName": "sample string 3", "Name": "sample string 4", "BadgeTemplateTypeId": "003f378c-a3be-4d6b-a748-fcb2d51b99fe", "Deleted": true } ]
application/xml, text/xml
Sample:
<ArrayOfBadgeBasicViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers"> <BadgeBasicViewModel> <ACSystemId>778d031e-4e7a-4529-9081-e9b8146c20cb</ACSystemId> <ACSystemName>sample string 2</ACSystemName> <BadgeTemplateId>fb53214c-53b8-4ff8-8b05-7f8a86325297</BadgeTemplateId> <BadgeTemplateTypeId>003f378c-a3be-4d6b-a748-fcb2d51b99fe</BadgeTemplateTypeId> <CompanyId>11ef4114-6ce6-49b7-bef1-49dc1ddf1ae8</CompanyId> <CompanyName>sample string 3</CompanyName> <Deleted>true</Deleted> <Name>sample string 4</Name> </BadgeBasicViewModel> <BadgeBasicViewModel> <ACSystemId>778d031e-4e7a-4529-9081-e9b8146c20cb</ACSystemId> <ACSystemName>sample string 2</ACSystemName> <BadgeTemplateId>fb53214c-53b8-4ff8-8b05-7f8a86325297</BadgeTemplateId> <BadgeTemplateTypeId>003f378c-a3be-4d6b-a748-fcb2d51b99fe</BadgeTemplateTypeId> <CompanyId>11ef4114-6ce6-49b7-bef1-49dc1ddf1ae8</CompanyId> <CompanyName>sample string 3</CompanyName> <Deleted>true</Deleted> <Name>sample string 4</Name> </BadgeBasicViewModel> </ArrayOfBadgeBasicViewModel>