POST api/custom-concepts/user-exists-for-solution
Request Information
URI Parameters
None.
Body Parameters
CustomConceptCredentials| Name | Description | Type | Additional information |
|---|---|---|---|
| App | AppCredentials |
None. |
|
| User | UserCredentials |
None. |
Request Formats
application/json, text/json
Sample:
{
"App": {
"ServerUrl": "sample string 1",
"ServiceUsername": "sample string 2",
"ServicePassword": "sample string 3",
"SolutionName": "sample string 4"
},
"User": {
"Email": "sample string 1",
"Name": "sample string 2",
"Password": "sample string 3",
"Role": "sample string 4"
}
}
application/xml, text/xml
Sample:
<CustomConceptCredentials xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hyland.TryDemos.Models">
<App>
<ServerUrl>sample string 1</ServerUrl>
<ServicePassword>sample string 3</ServicePassword>
<ServiceUsername>sample string 2</ServiceUsername>
<SolutionName>sample string 4</SolutionName>
</App>
<User>
<Email>sample string 1</Email>
<Name>sample string 2</Name>
<Password>sample string 3</Password>
<Role>sample string 4</Role>
</User>
</CustomConceptCredentials>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>