regis

<back to all web services

CorrespondenceRequestedRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/correspondence
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class CorrespondenceRequestedRequest
    {
        public Integer pid = null;
        public String token = null;
        
        public Integer getPid() { return pid; }
        public CorrespondenceRequestedRequest setPid(Integer value) { this.pid = value; return this; }
        public String getToken() { return token; }
        public CorrespondenceRequestedRequest setToken(String value) { this.token = value; return this; }
    }

    public static class CorrespondenceRequestedResponse
    {
        public ResponseStatus responseStatus = null;
        public Integer regent_id = null;
        public String request_code = null;
        public String request_description = null;
        public String request_instance = null;
        public String request_status = null;
        public Date request_date = null;
        public Date request_assigned_date = null;
        
        public ResponseStatus getResponseStatus() { return responseStatus; }
        public CorrespondenceRequestedResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
        public Integer getRegentId() { return regent_id; }
        public CorrespondenceRequestedResponse setRegentId(Integer value) { this.regent_id = value; return this; }
        public String getRequestCode() { return request_code; }
        public CorrespondenceRequestedResponse setRequestCode(String value) { this.request_code = value; return this; }
        public String getRequestDescription() { return request_description; }
        public CorrespondenceRequestedResponse setRequestDescription(String value) { this.request_description = value; return this; }
        public String getRequestInstance() { return request_instance; }
        public CorrespondenceRequestedResponse setRequestInstance(String value) { this.request_instance = value; return this; }
        public String getRequestStatus() { return request_status; }
        public CorrespondenceRequestedResponse setRequestStatus(String value) { this.request_status = value; return this; }
        public Date getRequestDate() { return request_date; }
        public CorrespondenceRequestedResponse setRequestDate(Date value) { this.request_date = value; return this; }
        public Date getRequestAssignedDate() { return request_assigned_date; }
        public CorrespondenceRequestedResponse setRequestAssignedDate(Date value) { this.request_assigned_date = value; return this; }
    }

}

Java CorrespondenceRequestedRequest DTOs

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

HTTP + OTHER

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

POST /correspondence HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length

{"pid":0,"token":"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,"request_code":"String","request_description":"String","request_instance":"String","request_status":"String","request_date":"0001-01-01T00:00:00.0000000","request_assigned_date":"0001-01-01T00:00:00.0000000"}