| GET,POST,PUT,DELETE | /{Workspace}/User/{ObjectId} | ||
|---|---|---|---|
| GET | /{Workspace}/User |
import Foundation
import ServiceStack
/**
* Represents a DTO for a user in a workspace. Calls without an ObjectId will retrieve an array of all user objects for the workspace.
*/
public class User : Codable
{
public var workspace:String
public var timeZone:String
public var objectId:String
public var versionId:String
public var created:String
public var lastUpdated:String
public var basedOn:String
public var externalId:String
public var name:String
public var initials:String
public var phone:String
public var email:String
public var password:String
public var requestUser:String
public var location:Location
public var userType:String
public var proposedRoute:[Location] = []
public var actualRoute:[Location] = []
public var image:String
public var userStatus:UserStatus
public var recordStatus:String
public var documents:[String] = []
public var subscribeToEmails:Bool
public var address:Address
public var skillTags:[String] = []
public var enabled:Bool
public var uiPrefTaskColumnsOff:[String] = []
public var uiPrefTaskColumns:[UIColumnPref] = []
public var data:[String:String] = [:]
public var teams:[String] = []
public var events:[EventItem] = []
public var color:String
public var vehicleAsset:String
public var externalAuth:Bool
public var createdBy:String
public var serviceAccount:Bool
public var assets:[String] = []
public var tfaRequired:Bool
public var tfaPreference:String
public var workWeek:[WorkDay] = []
public var customSchedulesEnabled:Bool
public var customSchedules:[CustomSchedule] = []
public var overrideSso:Bool
required public init(){}
}
public class Location : Codable
{
public var y:Double
public var x:Double
required public init(){}
}
public enum UserStatus : String, Codable
{
case NotStarted
case Driving
case InProgress
case Complete
case Blocked
}
public class Address : Codable
{
public var street:String
public var unit:String
public var city:String
public var state:String
public var zip:String
public var contactTitle:String
public var contactName:String
public var contactPhone:String
public var contactEmail:String
public var location:Location
public var siteName:String
public var geocodeFailed:Bool
public var country:String
required public init(){}
}
public class UIColumnPref : Codable
{
public var name:String
public var width:Double
required public init(){}
}
public class EventItem : Codable
{
public var objectId:String
public var date:String
public var location:Location
public var barcode:String
public var details:String
public var type:String
public var isScan:Bool
public var user:String
public var selectedBy:String
public var status:String
public var statusType:String
public var dateCreated:String
public var automatic:Bool
required public init(){}
}
public class WorkDay : Codable
{
public var dayOfWeek:Int
public var start:Int
public var end:Int
public var lunch:Int
required public init(){}
}
public class CustomSchedule : Codable
{
public var date:String
public var start:Int
public var end:Int
public var type:String
required public init(){}
}
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}/User/{ObjectId} HTTP/1.1
Host: dev.fieldsquared.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<User xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Field2Office.API.Model.Users">
<ActualRoute xmlns:d2p1="http://schemas.datacontract.org/2004/07/Field2Office.API.Model">
<d2p1:Location>
<d2p1:x>0</d2p1:x>
<d2p1:y>0</d2p1:y>
</d2p1:Location>
</ActualRoute>
<Address xmlns:d2p1="http://schemas.datacontract.org/2004/07/Field2Office.API.Model">
<d2p1:City>String</d2p1:City>
<d2p1:ContactEmail>String</d2p1:ContactEmail>
<d2p1:ContactName>String</d2p1:ContactName>
<d2p1:ContactPhone>String</d2p1:ContactPhone>
<d2p1:ContactTitle>String</d2p1:ContactTitle>
<d2p1:Country>String</d2p1:Country>
<d2p1:GeocodeFailed>false</d2p1:GeocodeFailed>
<d2p1:Location>
<d2p1:x>0</d2p1:x>
<d2p1:y>0</d2p1:y>
</d2p1:Location>
<d2p1:SiteName>String</d2p1:SiteName>
<d2p1:State>String</d2p1:State>
<d2p1:Street>String</d2p1:Street>
<d2p1:Unit>String</d2p1:Unit>
<d2p1:Zip>String</d2p1:Zip>
</Address>
<Assets xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</Assets>
<BasedOn>String</BasedOn>
<Color>String</Color>
<Created>String</Created>
<CreatedBy>String</CreatedBy>
<CustomSchedules>
<CustomSchedule>
<Date>String</Date>
<End>0</End>
<Start>0</Start>
<Type>String</Type>
</CustomSchedule>
</CustomSchedules>
<CustomSchedulesEnabled>false</CustomSchedulesEnabled>
<Data xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>String</d2p1:Key>
<d2p1:Value>String</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</Data>
<Documents xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</Documents>
<Email>String</Email>
<Enabled>false</Enabled>
<Events xmlns:d2p1="http://schemas.datacontract.org/2004/07/Field2Office.API.Model">
<d2p1:EventItem>
<d2p1:Automatic>false</d2p1:Automatic>
<d2p1:Barcode>String</d2p1:Barcode>
<d2p1:Date>String</d2p1:Date>
<d2p1:DateCreated>String</d2p1:DateCreated>
<d2p1:Details>String</d2p1:Details>
<d2p1:IsScan>false</d2p1:IsScan>
<d2p1:Location>
<d2p1:x>0</d2p1:x>
<d2p1:y>0</d2p1:y>
</d2p1:Location>
<d2p1:ObjectId>String</d2p1:ObjectId>
<d2p1:SelectedBy>String</d2p1:SelectedBy>
<d2p1:Status>String</d2p1:Status>
<d2p1:StatusType>String</d2p1:StatusType>
<d2p1:Type>String</d2p1:Type>
<d2p1:User>String</d2p1:User>
</d2p1:EventItem>
</Events>
<ExternalAuth>false</ExternalAuth>
<ExternalId>String</ExternalId>
<Image>String</Image>
<Initials>String</Initials>
<LastUpdated>String</LastUpdated>
<Location xmlns:d2p1="http://schemas.datacontract.org/2004/07/Field2Office.API.Model">
<d2p1:x>0</d2p1:x>
<d2p1:y>0</d2p1:y>
</Location>
<Name>String</Name>
<ObjectId>String</ObjectId>
<OverrideSso>false</OverrideSso>
<Password>String</Password>
<Phone>String</Phone>
<ProposedRoute xmlns:d2p1="http://schemas.datacontract.org/2004/07/Field2Office.API.Model">
<d2p1:Location>
<d2p1:x>0</d2p1:x>
<d2p1:y>0</d2p1:y>
</d2p1:Location>
</ProposedRoute>
<RecordStatus>String</RecordStatus>
<RequestUser>String</RequestUser>
<ServiceAccount>false</ServiceAccount>
<SkillTags xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</SkillTags>
<SubscribeToEmails>false</SubscribeToEmails>
<Teams xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</Teams>
<TfaPreference>String</TfaPreference>
<TfaRequired>false</TfaRequired>
<TimeZone>String</TimeZone>
<UIPrefTaskColumns xmlns:d2p1="http://schemas.datacontract.org/2004/07/Field2Office.API.Model">
<d2p1:UIColumnPref>
<d2p1:Name>String</d2p1:Name>
<d2p1:Width>0</d2p1:Width>
</d2p1:UIColumnPref>
</UIPrefTaskColumns>
<UIPrefTaskColumnsOff xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</UIPrefTaskColumnsOff>
<UserStatus>NotStarted</UserStatus>
<UserType>String</UserType>
<VehicleAsset>String</VehicleAsset>
<VersionId>String</VersionId>
<WorkWeek xmlns:d2p1="http://schemas.datacontract.org/2004/07/Field2Office.API.Model.Workspaces">
<d2p1:WorkDay>
<d2p1:DayOfWeek>0</d2p1:DayOfWeek>
<d2p1:End>0</d2p1:End>
<d2p1:Lunch>0</d2p1:Lunch>
<d2p1:Start>0</d2p1:Start>
</d2p1:WorkDay>
</WorkWeek>
<Workspace>String</Workspace>
</User>