Starlite API

<back to all web services

MemberLockboxTransactions

The following routes are available for this service:
POST/Members/LockboxTransactions
POST/Members/MemberLockboxTransactions
import java.math.*
import java.util.*
import net.servicestack.client.*


open class MemberLockboxTransactions : ServiceRequestBase()
{
    /**
    * The starting date for which to retrieve lockbox document transactions
    */
    @ApiMember(Description="The starting date for which to retrieve lockbox document transactions", ParameterType="body")
    var FromDate:Date? = null

    /**
    * The ending date for which to retrieve lockbox document transactions
    */
    @ApiMember(Description="The ending date for which to retrieve lockbox document transactions", ParameterType="body")
    var ToDate:Date? = null

    /**
    * The management company id for which to retrieve lockbox document transactions
    */
    @ApiMember(Description="The management company id for which to retrieve lockbox document transactions", ParameterType="body")
    var ManagementCompanyId:String? = null

    /**
    * The association for which to retrieve lockbox document transactions
    */
    @ApiMember(Description="The association for which to retrieve lockbox document transactions", ParameterType="body")
    var AssociationId:String? = null

    /**
    * The individual member for who to retrieve lockbox document transactions
    */
    @ApiMember(Description="The individual member for who to retrieve lockbox document transactions", ParameterType="body")
    var MemberId:String? = null

    /**
    * The type of lockbox document for which to retrieve.
    */
    @ApiMember(Description="The type of lockbox document for which to retrieve.", ParameterType="body")
    var DocumentType:String? = null

    /**
    * The channel which the lockbox document came through.
    */
    @ApiMember(Description="The channel which the lockbox document came through.", ParameterType="body")
    var DocumentChannel:String? = null
}

@DataContract
open class ServiceRequestBase : IHasVersion
{
}

@DataContract
open class ServiceResponseBase
{
    /**
    * Identifies whether the request executed successfully, however does not indicated requested data was found
    */
    @DataMember
    @ApiMember(Description="Identifies whether the request executed successfully, however does not indicated requested data was found")
    var IsSuccessful:Boolean? = null

    /**
    * The status code returned by the service
    */
    @DataMember
    @ApiMember(Description="The status code returned by the service")
    var StatusCode:Int? = null

    /**
    * The status message returned by the service
    */
    @DataMember
    @ApiMember(Description="The status message returned by the service")
    var StatusMessage:String? = null

    @DataMember
    @ApiMember(ExcludeInSchema=true)
    var ServiceDebugFields:HashMap<String,String> = HashMap<String,String>()
}

Kotlin MemberLockboxTransactions DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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

POST /Members/LockboxTransactions HTTP/1.1 
Host: services.allianceassociationbank.com 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"FromDate":"\/Date(-62135596800000-0000)\/","ToDate":"\/Date(-62135596800000-0000)\/","ManagementCompanyId":"String","AssociationId":"String","MemberId":"String","DocumentType":"String","DocumentChannel":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"IsSuccessful":false,"StatusCode":0,"StatusMessage":"String","ServiceDebugFields":{"ApiServiceHost":"AZW-AABWPW03","ApiServiceHostVersion":"2016.1.18.3"}}