Required role: | REGISUserRole |
POST | /Sections/{reporting_term}/{section_uuid}/Rate/Create |
---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
public static class SectionRateCreateRequest
{
public String section_uuid = null;
public String authorizing_uuid = null;
public String rate_code = null;
public Boolean is_override_credit_rate = null;
public Boolean is_override_audit_rate = null;
public String reporting_term = null;
public String getSectionUuid() { return section_uuid; }
public SectionRateCreateRequest setSectionUuid(String value) { this.section_uuid = value; return this; }
public String getAuthorizingUuid() { return authorizing_uuid; }
public SectionRateCreateRequest setAuthorizingUuid(String value) { this.authorizing_uuid = value; return this; }
public String getRateCode() { return rate_code; }
public SectionRateCreateRequest setRateCode(String value) { this.rate_code = value; return this; }
public Boolean getIsOverrideCreditRate() { return is_override_credit_rate; }
public SectionRateCreateRequest setIsOverrideCreditRate(Boolean value) { this.is_override_credit_rate = value; return this; }
public Boolean getIsOverrideAuditRate() { return is_override_audit_rate; }
public SectionRateCreateRequest setIsOverrideAuditRate(Boolean value) { this.is_override_audit_rate = value; return this; }
public String getReportingTerm() { return reporting_term; }
public SectionRateCreateRequest setReportingTerm(String value) { this.reporting_term = value; return this; }
}
}
Java SectionRateCreateRequest 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 /Sections/{reporting_term}/{section_uuid}/Rate/Create HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"section_uuid":"String","authorizing_uuid":"String","rate_code":"String","is_override_credit_rate":false,"is_override_audit_rate":false,"reporting_term":"String"}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}