GET api/v1/Users/AvailableHIDCredentials?HIDMobileCredentialPartNumberId={HIDMobileCredentialPartNumberId}

Returns the number of available HID Mobile Credentials

Request Information

URI Parameters

NameDescriptionTypeAdditional information
HIDMobileCredentialPartNumberId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

ResultWithInt
NameDescriptionTypeAdditional information
Value

Represents the PK value that was created as a result of an add

integer

None.

ResultCode

Represents the result code

integer

None.

Description

Represents a description of the result code

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Value": 1,
  "ResultCode": 2,
  "Description": "sample string 3"
}

application/xml, text/xml

Sample:
<ResultWithInt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers">
  <Description>sample string 3</Description>
  <HttpStatusCode>Continue</HttpStatusCode>
  <ResultCode>2</ResultCode>
  <Value>1</Value>
</ResultWithInt>