Required role: | REGISUserRole |
POST | /Directory/Settings/{uuid} |
---|
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports regis.ClassLibrary.Requests
Imports regis.ClassLibrary.Responses
Namespace Global
Namespace regis.ClassLibrary.Requests
Public Partial Class DirectorySettingsAndActivePersonLookupRequest
Public Overridable Property uuid As String
End Class
End Namespace
Namespace regis.ClassLibrary.Responses
Public Partial Class DirectoryPersonLookupResponse
Public Overridable Property directory_uuid As String
Public Overridable Property name As String
Public Overridable Property is_active As Boolean
End Class
Public Partial Class DirectoryResponse
Public Overridable Property directory_uuid As String
Public Overridable Property waiver As String
Public Overridable Property bday As Nullable(Of Date)
Public Overridable Property spouse_bday As Nullable(Of Date)
Public Overridable Property spouse_name As String
Public Overridable Property wedding_date As Nullable(Of Date)
Public Overridable Property kids As String
Public Overridable Property home_country As String
Public Overridable Property quote As String
Public Overridable Property bio As String
Public Overridable Property interests As String
Public Overridable Property category As String
Public Overridable Property field_of_work As String
Public Overridable Property church As String
End Class
Public Partial Class DirectorySettingsAndPersonLookupResponse
Public Sub New()
person_lookup = New List(Of DirectoryPersonLookupResponse)
End Sub
Public Overridable Property ResponseStatus As ResponseStatus
Public Overridable Property regent_id As Integer
Public Overridable Property uuid As String
Public Overridable Property directory_settings As DirectoryResponse
Public Overridable Property directory_share_settings As DirectoryShareSettingsResponse
Public Overridable Property person_lookup As List(Of DirectoryPersonLookupResponse)
End Class
Public Partial Class DirectoryShareSettingsResponse
Public Overridable Property directory_uuid As String
Public Overridable Property share_full_name As Boolean
Public Overridable Property share_bday As Boolean
Public Overridable Property share_home_phone As Boolean
Public Overridable Property share_cell_phone As Boolean
Public Overridable Property share_email As Boolean
Public Overridable Property share_address As Boolean
Public Overridable Property share_quote As Boolean
Public Overridable Property share_bio As Boolean
Public Overridable Property share_interests As Boolean
Public Overridable Property share_home_country As Boolean
Public Overridable Property share_program As Boolean
Public Overridable Property share_picture As Boolean
Public Overridable Property share_spouse_name As Boolean
Public Overridable Property share_spouse_bday As Boolean
Public Overridable Property share_wedding_date As Boolean
Public Overridable Property share_kids As Boolean
Public Overridable Property share_field_of_work As Boolean
Public Overridable Property share_church As Boolean
End Class
End Namespace
End Namespace
VB.NET DirectorySettingsAndActivePersonLookupRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Directory/Settings/{uuid} HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"uuid":"String"}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"regent_id":0,"uuid":"String","directory_settings":{"directory_uuid":"String","waiver":"String","bday":"0001-01-01T00:00:00.0000000","spouse_bday":"0001-01-01T00:00:00.0000000","spouse_name":"String","wedding_date":"0001-01-01T00:00:00.0000000","kids":"String","home_country":"String","quote":"String","bio":"String","interests":"String","category":"String","field_of_work":"String","church":"String"},"directory_share_settings":{"directory_uuid":"String","share_full_name":false,"share_bday":false,"share_home_phone":false,"share_cell_phone":false,"share_email":false,"share_address":false,"share_quote":false,"share_bio":false,"share_interests":false,"share_home_country":false,"share_program":false,"share_picture":false,"share_spouse_name":false,"share_spouse_bday":false,"share_wedding_date":false,"share_kids":false,"share_field_of_work":false,"share_church":false},"person_lookup":[{"directory_uuid":"String","name":"String","is_active":false}]}