Ascio Web Service v3
Class GetSubUserResponse
Property | Description |
---|---|
GetSubUserResult | |
SubUser | |
UserRights | |
ResultCode | Example: 1 |
ResultMessage | |
Errors |
Used in Classes
Used in examples
<?php
namespace ascio\v3\examples;
require("../service/autoload.php");
require("../../lib/AscioConfig.php");
use ascio\v3 as ascio;
$subUser = new ascio\UserInfo();
$subUser->setUserName("UserNameTest");
$subUser->setName("ascio-is-great.com");
$subUser->setEmail("administrator@ascio-test-domain.com");
$subUser->setCreated(new \DateTime());
$subUser->setIsLocked("IsLockedTest");
$subUser->setLastSuccessfulLoginDate(new \DateTime());
$subUser->setLastLoginAttemptDate(new \DateTime());
$subUser->setInvalidPasswordAttempts(1);
$subUser->setLastUpdated(new \DateTime());
$getSubUserResponse = new ascio\GetSubUserResponse();
$getSubUserResponse->setResultCode(1);
$getSubUserResponse->setResultMessage("ResultMessageTest");
$getSubUserResponse->setErrors([
]);
$getSubUserResponse->setSubUser($subUser);
$getSubUserResponse->setUserRights([
]);
WSDL for AWS v3
https://aws.demo.ascio.com/v3/aws.wsdl (OTE)
https://aws.ascio.com/v3/aws.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.
https://aws.demo.ascio.com/v3/aws.wsdl (OTE)
https://aws.ascio.com/v3/aws.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.