Required role: | REGISUserRole |
POST | /correspondence |
---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
public static class LetterSentRequest
{
public Integer pid = null;
public Integer getPid() { return pid; }
public LetterSentRequest setPid(Integer value) { this.pid = value; return this; }
}
public static class LetterSentResponse
{
public ResponseStatus responseStatus = null;
public Integer regent_id = null;
public String document_name = null;
public String document_description = null;
public String program = null;
public String letter_status = null;
public String application_status = null;
public Date application_date = null;
public Date added_date = null;
public ResponseStatus getResponseStatus() { return responseStatus; }
public LetterSentResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
public Integer getRegentId() { return regent_id; }
public LetterSentResponse setRegentId(Integer value) { this.regent_id = value; return this; }
public String getDocumentName() { return document_name; }
public LetterSentResponse setDocumentName(String value) { this.document_name = value; return this; }
public String getDocumentDescription() { return document_description; }
public LetterSentResponse setDocumentDescription(String value) { this.document_description = value; return this; }
public String getProgram() { return program; }
public LetterSentResponse setProgram(String value) { this.program = value; return this; }
public String getLetterStatus() { return letter_status; }
public LetterSentResponse setLetterStatus(String value) { this.letter_status = value; return this; }
public String getApplicationStatus() { return application_status; }
public LetterSentResponse setApplicationStatus(String value) { this.application_status = value; return this; }
public Date getApplicationDate() { return application_date; }
public LetterSentResponse setApplicationDate(Date value) { this.application_date = value; return this; }
public Date getAddedDate() { return added_date; }
public LetterSentResponse setAddedDate(Date value) { this.added_date = value; return this; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
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/jsv
Content-Type: text/jsv
Content-Length: length
{
pid: 0
}
HTTP/1.1 200 OK Content-Type: text/jsv 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, document_name: String, document_description: String, program: String, letter_status: String, application_status: String, application_date: 0001-01-01, added_date: 0001-01-01 }