POST api/createserviceaccount
Create a new service account for the windows service
Request Information
URI Parameters
None.
Body Parameters
ServiceAccountCreationRequestName | Description | Type | Additional information |
---|---|---|---|
CustomerCode | string |
None. |
|
Password | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "CustomerCode": "sample string 1", "Password": "sample string 2" }
application/xml, text/xml
Sample:
<ServiceAccountCreationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Sumerian.API.RequestObjects"> <CustomerCode>sample string 1</CustomerCode> <Password>sample string 2</Password> </ServiceAccountCreationRequest>
Response Information
Resource Description
Boolean value indicating success
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>