...
Code Block |
---|
POST /adminportal/webservice.asmx HTTP/1.1 Host: demo.logisense.com Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "Logisense_EngageIP/GetUserDetail" <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> <AuthHeader xmlns="Logisense_EngageIP"> <Username>string</Username> <Password>string</Password> </AuthHeader> </soap:Header> <soap:Body> <GetUserDetail xmlns="Logisense_EngageIP"> <username>string</username> </GetUserDetail> </soap:Body> </soap:Envelope> |
Code Block |
---|
...
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetUserDetailResponse xmlns="Logisense_EngageIP">
<GetUserDetailResult>
<ID>int</ID>
<RoleID>int</RoleID>
<CultureID>int</CultureID>
<CurrencyID>int</CurrencyID>
<LanguageID>int</LanguageID>
<OwnerID>int</OwnerID>
<Account>string</Account>
<Name>string</Name>
<Password>string</Password>
<CreatedDate>dateTime</CreatedDate>
<UserStatusTypeID>int</UserStatusTypeID>
<CreditRatingID>int</CreditRatingID>
<Role>string</Role>
<Culture>string</Culture>
<Currency>string</Currency>
<Language>string</Language>
<Owner>string</Owner>
<Assignable>boolean</Assignable>
<BillGroupID>int</BillGroupID>
<UserStatusType>string</UserStatusType>
<BillGroup>string</BillGroup>
<CreditRating>string</CreditRating>
<PasswordLastChangedDate>dateTime</PasswordLastChangedDate>
<ActingOwnerID>int</ActingOwnerID>
<ExpireDate>dateTime</ExpireDate>
<InvoiceConfigurationID>int</InvoiceConfigurationID>
<InvoiceDeliveryType>string</InvoiceDeliveryType>
<Current_StatusTypeID>int</Current_StatusTypeID>
<CreatedBy>int</CreatedBy>
<ForcePasswordChangeOnNextLogin>boolean</ForcePasswordChangeOnNextLogin>
<InvoiceConfiguration>string</InvoiceConfiguration>
<ParentID>int</ParentID>
</GetUserDetailResult>
</GetUserDetailResponse>
</soap:Body>
</soap:Envelope> |