GET api/shopping/BlindShoppingEnabled
This API will inform you whether or not Blind Shopping (Shopping without authentication) is allowed within the client system
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
BlindShoppingEnabledViewModelName | Description | Type | Additional information |
---|---|---|---|
IsBlindShoppingEnabled |
Defines whether or not blind shopping (shopping without authentication) is enabled |
boolean |
None. |
BlindRepDID |
If Blind Shopping is enabled, this would be the RepDID you'd want to use for blind shopping |
string |
None. |
IsRepNumberReEntryRecommended |
If Blind Shopping is enabled, the company may recommend that the user have to re-enter a RepDID to verify they know the RepDID of the person they want to shop for |
boolean |
None. |
Response Formats
application/xml, text/xml
Sample:
<BlindShoppingEnabledViewModel> <IsBlindShoppingEnabled>True</IsBlindShoppingEnabled> <BlindRepDID>sample string 2</BlindRepDID> <IsRepNumberReEntryRecommended>True</IsRepNumberReEntryRecommended> </BlindShoppingEnabledViewModel>
application/json, text/json
Sample:
{ "IsBlindShoppingEnabled": true, "BlindRepDID": "sample string 2", "IsRepNumberReEntryRecommended": true }