regis

<back to all web services

DirectoryShareUpdateRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/Directory/Share/{directory_uuid}/Save
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using regis.ClassLibrary.Requests;

namespace regis.ClassLibrary.Requests
{
    public partial class DirectoryShareUpdateRequest
    {
        public virtual string directory_uuid { get; set; }
        public virtual bool share_full_name { get; set; }
        public virtual bool share_bday { get; set; }
        public virtual bool share_home_phone { get; set; }
        public virtual bool share_cell_phone { get; set; }
        public virtual bool share_email { get; set; }
        public virtual bool share_address { get; set; }
        public virtual bool share_quote { get; set; }
        public virtual bool share_bio { get; set; }
        public virtual bool share_interests { get; set; }
        public virtual bool share_home_country { get; set; }
        public virtual bool share_program { get; set; }
        public virtual bool share_picture { get; set; }
        public virtual bool share_spouse_name { get; set; }
        public virtual bool share_spouse_bday { get; set; }
        public virtual bool share_wedding_date { get; set; }
        public virtual bool share_kids { get; set; }
        public virtual bool share_field_of_work { get; set; }
        public virtual bool share_church { get; set; }
    }

}

C# DirectoryShareUpdateRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /Directory/Share/{directory_uuid}/Save HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"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}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}