POST api/customers/createcustomermobileaccess

Request Information

URI Parameters

None.

Body Parameters

CreateCustomerMobileAccessRequest
NameDescriptionTypeAdditional information
CustomerFolderId

integer

None.

CustId

integer

None.

Username

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerFolderId": 1,
  "CustId": 2,
  "Username": "sample string 3"
}

application/xml, text/xml

Sample:
<CreateCustomerMobileAccessRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Atlantis.Library.Web.Models">
  <CustId>2</CustId>
  <CustomerFolderId>1</CustomerFolderId>
  <Username>sample string 3</Username>
</CreateCustomerMobileAccessRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CreateCustomerMobileAccessResult
NameDescriptionTypeAdditional information
Provisioned

boolean

None.

CustomerFolderId

integer

None.

CustomerId

integer

None.

AccountId

integer

None.

Username

string

None.

PasswordExpirationDate

date

None.

FailureMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Provisioned": true,
  "CustomerFolderId": 2,
  "CustomerId": 3,
  "AccountId": 4,
  "Username": "sample string 5",
  "PasswordExpirationDate": "2026-08-18T04:40:55.1150982+03:00",
  "FailureMessage": "sample string 7"
}

application/xml, text/xml

Sample:
<CreateCustomerMobileAccessResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Atlantis.Library.Web.Models">
  <AccountId>4</AccountId>
  <CustomerFolderId>2</CustomerFolderId>
  <CustomerId>3</CustomerId>
  <FailureMessage>sample string 7</FailureMessage>
  <PasswordExpirationDate>2026-08-18T04:40:55.1150982+03:00</PasswordExpirationDate>
  <Provisioned>true</Provisioned>
  <Username>sample string 5</Username>
</CreateCustomerMobileAccessResult>