| GET | /{Workspace}/CustomerPortal/User/{ObjectId} | ||
|---|---|---|---|
| PATCH | /{Workspace}/CustomerPortal/User | ||
| GET, PUT, POST, PATCH, DELETE | /{Workspace}/PortalUser | ||
| GET, DELETE | /{Workspace}/PortalUser/{ObjectId} |
namespace Field2Office.API.Model.CustomerPortal
open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type PortalUser() =
member val Workspace:String = null with get,set
member val ObjectId:String = null with get,set
member val Created:String = null with get,set
member val LastUpdated:String = null with get,set
member val ActivationEmailSent:String = null with get,set
member val Name:String = null with get,set
member val Email:String = null with get,set
member val Password:String = null with get,set
member val PasswordForUpdate:String = null with get,set
member val Phone:String = null with get,set
member val Teams:ResizeArray<String> = new ResizeArray<String>() with get,set
member val TfaPreference:String = null with get,set
member val UploadPermission:Nullable<Boolean> = new Nullable<Boolean>() with get,set
member val DownloadPermission:Nullable<Boolean> = new Nullable<Boolean>() with get,set
member val Activated:Boolean = new Boolean() with get,set
member val Enabled:Nullable<Boolean> = new Nullable<Boolean>() with get,set
member val Locked:Nullable<Boolean> = new Nullable<Boolean>() with get,set
member val ActivationCode:String = null with get,set
member val FailedLoginAttempts:Nullable<Int32> = new Nullable<Int32>() with get,set
member val OverrideSso:Nullable<Boolean> = new Nullable<Boolean>() with get,set
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /{Workspace}/PortalUser HTTP/1.1
Host: dev.fieldsquared.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<PortalUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Field2Office.API.Model.CustomerPortal">
<Activated>false</Activated>
<ActivationCode>String</ActivationCode>
<ActivationEmailSent>String</ActivationEmailSent>
<Created>String</Created>
<DownloadPermission>false</DownloadPermission>
<Email>String</Email>
<Enabled>false</Enabled>
<FailedLoginAttempts>0</FailedLoginAttempts>
<LastUpdated>String</LastUpdated>
<Locked>false</Locked>
<Name>String</Name>
<ObjectId>String</ObjectId>
<OverrideSso>false</OverrideSso>
<Password>String</Password>
<PasswordForUpdate>String</PasswordForUpdate>
<Phone>String</Phone>
<Teams xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</Teams>
<TfaPreference>String</TfaPreference>
<UploadPermission>false</UploadPermission>
<Workspace>String</Workspace>
</PortalUser>