POST api/Customer/SaveOutsourcedUser
Request Information
URI Parameters
None.
Body Parameters
SavaOutsourcedUserRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| LogonName | string |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| GsmNumber | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"LogonName": "sample string 1",
"FirstName": "sample string 2",
"LastName": "sample string 3",
"GsmNumber": "sample string 4"
}
application/xml, text/xml
Sample:
<SavaOutsourcedUserRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <FirstName>sample string 2</FirstName> <GsmNumber>sample string 4</GsmNumber> <LastName>sample string 3</LastName> <LogonName>sample string 1</LogonName> </SavaOutsourcedUserRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SaveOutsourcedUserResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| UserId | globally unique identifier |
None. |
|
| IsExistUser | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"UserId": "08e93a60-9d8c-4b28-8c21-c836b243368f",
"IsExistUser": true,
"Message": "sample string 3"
}
application/xml, text/xml
Sample:
<SaveOutsourcedUserResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <IsExistUser>true</IsExistUser> <Message>sample string 3</Message> <Success>true</Success> <UserId>08e93a60-9d8c-4b28-8c21-c836b243368f</UserId> </SaveOutsourcedUserResponse>