GET api/AccountValidation?accountUrlName={accountUrlName}
Validates if the supplied account number is valid.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountUrlName |
Identifier of the account to validate. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
AccountValidationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UrlName |
Unique value that identifies each customer account. This value is used in the URL when accessing the portal through the web interface. |
string |
None. |
| Name |
Name of the customer account. |
string |
None. |
| LogoUrl |
URL to get access to the logo of the application. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"UrlName": "sample string 1",
"Name": "sample string 2",
"LogoUrl": "sample string 3"
}
application/xml, text/xml
Sample:
<AccountValidationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.Accounts"> <LogoUrl>sample string 3</LogoUrl> <Name>sample string 2</Name> <UrlName>sample string 1</UrlName> </AccountValidationModel>