Required role: | REGISUserRole |
POST | /TaxReceipt/{uuid}/List |
---|
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 TaxReceiptListRequest
Public Overridable Property uuid As String
End Class
End Namespace
Namespace regis.ClassLibrary.Responses
Public Partial Class TaxReceiptResponse
Public Overridable Property is_t4a As Boolean
Public Overridable Property is_t2202a As Boolean
Public Overridable Property year As Integer
Public Overridable Property url As String
End Class
Public Partial Class TaxReceiptsResponse
Public Sub New()
receipts = New List(Of TaxReceiptResponse)
End Sub
Public Overridable Property ResponseStatus As ResponseStatus
Public Overridable Property is_missing_tax_number As Boolean
Public Overridable Property receipts As List(Of TaxReceiptResponse)
End Class
End Namespace
End Namespace
VB.NET TaxReceiptListRequest 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 /TaxReceipt/{uuid}/List HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"uuid":"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"}},"is_missing_tax_number":false,"receipts":[{"is_t4a":false,"is_t2202a":false,"year":0,"url":"String"}]}