Required permission: | FinancialAidPermission |
POST | /Finance/FinancialAid/Application/{application_uuid}/{file_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 FinancialAidApplicationFileRequest
Public Overridable Property application_uuid As String
Public Overridable Property file_uuid As String
End Class
End Namespace
Namespace regis.ClassLibrary.Responses
Public Partial Class FileResponse
Inherits FileSimpleResponse
Public Sub New()
content = New Byte(){}
End Sub
Public Overridable Property type As String
Public Overridable Property content As Byte()
End Class
Public Partial Class FileSimpleResponse
Public Overridable Property ResponseStatus As ResponseStatus
Public Overridable Property uuid As String
Public Overridable Property name As String
Public Overridable Property extension As String
Public Overridable Property size As Long
End Class
End Namespace
End Namespace
VB.NET FinancialAidApplicationFileRequest 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 /Finance/FinancialAid/Application/{application_uuid}/{file_uuid} HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"application_uuid":"String","file_uuid":"String"}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"type":"String","content":"AA==","responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"uuid":"String","name":"String","extension":"String","size":0}