POST api/Customer/SaveOutsourcedUser

Request Information

URI Parameters

None.

Body Parameters

SavaOutsourcedUserRequest
NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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": "4af6dbe2-5f03-4751-aab1-e483acfad297",
  "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>4af6dbe2-5f03-4751-aab1-e483acfad297</UserId>
</SaveOutsourcedUserResponse>