| POST, GET | /api/GetCustomerTokens |
|---|
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports AIM.WebService
Namespace Global
Namespace AIM.WebService
<DataContract>
Public Partial Class AchDetail
<DataMember>
Public Overridable Property Name As String
<DataMember>
Public Overridable Property BankNumber As String
<DataMember>
Public Overridable Property Routing As String
<DataMember>
Public Overridable Property Type As String
End Class
<DataContract>
Public Partial Class BaseRequest
'''<Summary>
'''This is your AIM API Key provided by Tri-Tech
'''</Summary>
<DataMember>
<ApiMember(DataType:="string", Description:="This is your AIM API Key provided by Tri-Tech", IsRequired:=true, Name:="ApiKey", ParameterType:="Header")>
Public Overridable Property ApiKey As String
'''<Summary>
'''The OAuthToken token return by AeServices30
'''</Summary>
<DataMember>
<ApiMember(DataType:="string", Description:="The OAuthToken token return by AeServices30", IsRequired:=true, Name:="OAuthToken", ParameterType:="Header")>
Public Overridable Property OAuthToken As String
'''<Summary>
'''The Device ID of the Mobile Device. Not used for non-mobile devices.
'''</Summary>
<DataMember>
<ApiMember(DataType:="string", Description:="The Device ID of the Mobile Device. Not used for non-mobile devices.", Name:="DeviceId", ParameterType:="Header")>
Public Overridable Property DeviceId As String
'''<Summary>
'''An identifier for your integration
'''</Summary>
<DataMember>
<ApiMember(DataType:="string", Description:="An identifier for your integration", IsRequired:=true, Name:="AppId", ParameterType:="Header")>
Public Overridable Property AppId As String
End Class
<DataContract>
Public Partial Class BaseResponse
'''<Summary>
'''
'''</Summary>
<DataMember>
<ApiMember(DataType:="BaseResponseResult", Description:="", Name:="Status", ParameterType:="body")>
Public Overridable Property Status As BaseResponseResult
<DataContract>
Public Partial Class BaseResponseResult
'''<Summary>
'''
'''</Summary>
<DataMember>
<ApiMember(DataType:="string", Description:="", Name:="StatusCode", ParameterType:="body")>
Public Overridable Property StatusCode As String
'''<Summary>
'''
'''</Summary>
<DataMember>
<ApiMember(DataType:="string", Description:="", Name:="Login", ParameterType:="body")>
Public Overridable Property Login As String
'''<Summary>
'''
'''</Summary>
<DataMember>
<ApiMember(DataType:="string", Description:="", Name:="ErrorCode", ParameterType:="body")>
Public Overridable Property ErrorCode As String
'''<Summary>
'''
'''</Summary>
<DataMember>
<ApiMember(DataType:="string", Description:="", Name:="ErrorDisplayText", ParameterType:="body")>
Public Overridable Property ErrorDisplayText As String
'''<Summary>
'''
'''</Summary>
<DataMember>
<ApiMember(DataType:="string", Description:="", Name:="ErrorMessage", ParameterType:="body")>
Public Overridable Property ErrorMessage As String
'''<Summary>
'''
'''</Summary>
<DataMember>
<ApiMember(DataType:="string", Description:="", ExcludeInSchema:=true, Name:="DomainName", ParameterType:="body")>
Public Overridable Property DomainName As String
'''<Summary>
'''
'''</Summary>
<DataMember>
<ApiMember(DataType:="string", Description:="", ExcludeInSchema:=true, Name:="IPAddress", ParameterType:="body")>
Public Overridable Property IpAddress As String
End Class
End Class
<DataContract>
Public Partial Class BaseSecureRequest
Inherits BaseRequest
'''<Summary>
'''The Login Token return by the Security API. Required for secured calls.
'''</Summary>
<DataMember>
<ApiMember(DataType:="string", Description:="The Login Token return by the Security API. Required for secured calls.", Name:="Token", ParameterType:="Header")>
Public Overridable Property Token As String
End Class
<DataContract(Name:="CCInfo")>
Public Partial Class CcInfo
'''<Summary>
'''Token returned from processor
'''</Summary>
<DataMember>
<ApiMember(DataType:="string", Description:="Token returned from processor", IsRequired:=true, Name:="TokenStr", ParameterType:="body")>
Public Overridable Property TokenStr As String
'''<Summary>
'''Card Type (VISA, MCARD, AMEX, DSCVR)
'''</Summary>
<DataMember>
<ApiMember(DataType:="string", Description:="Card Type (VISA, MCARD, AMEX, DSCVR)", IsRequired:=true, Name:="CardType", ParameterType:="body")>
Public Overridable Property CardType As String
'''<Summary>
'''Last four of the card
'''</Summary>
<DataMember>
<ApiMember(DataType:="string", Description:="Last four of the card", IsRequired:=true, Name:="LastFour", ParameterType:="body")>
Public Overridable Property LastFour As String
'''<Summary>
'''Expiration Date of the Card. (MM/YY)
'''</Summary>
<DataMember>
<ApiMember(DataType:="string", Description:="Expiration Date of the Card. (MM/YY)", Name:="Expiration", ParameterType:="body")>
Public Overridable Property Expiration As String
'''<Summary>
'''Reason the card is on file.
'''</Summary>
<DataMember>
<ApiMember(DataType:="string", Description:="Reason the card is on file.", Name:="ReasonOnFile", ParameterType:="body")>
Public Overridable Property ReasonOnFile As String
'''<Summary>
'''ID of the existing Token Record in AIM, if applicable
'''</Summary>
<DataMember>
<ApiMember(DataType:="integer", Description:="ID of the existing Token Record in AIM, if applicable", Format:="int64", Name:="TokenPk", ParameterType:="body")>
Public Overridable Property TokenPk As Nullable(Of Long)
'''<Summary>
'''Is this the customer's primary card? Defaults to false.
'''</Summary>
<DataMember>
<ApiMember(DataType:="boolean", Description:="Is this the customer's primary card? Defaults to false.", Name:="Primary", ParameterType:="body")>
Public Overridable Property Primary As Nullable(Of Boolean)
End Class
'''<Summary>
'''GetCustomerTokensRequires active-e Customer Service.
'''</Summary>
<DataContract>
Public Partial Class GetCustomerTokensRequest
Inherits BaseSecureRequest
<DataMember>
Public Overridable Property GetExpiredCards As Nullable(Of Boolean)
<DataMember>
Public Overridable Property GetInactiveCards As Nullable(Of Boolean)
<DataMember>
Public Overridable Property Acct As Nullable(Of Integer)
End Class
<DataContract>
Public Partial Class GetCustomerTokensResponse
Inherits BaseResponse
Public Sub New()
CustomerTokens = New List(Of CcInfo)
End Sub
<DataMember>
Public Overridable Property CustomerTokens As List(Of CcInfo)
<DataMember>
Public Overridable Property Ach As AchDetail
End Class
End Namespace
End Namespace
VB.NET GetCustomerTokensRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /api/GetCustomerTokens HTTP/1.1
Host: active-ewebservice.biz
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<GetCustomerTokensRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIM.WebService">
<ApiKey>String</ApiKey>
<AppId>String</AppId>
<DeviceId>String</DeviceId>
<OAuthToken>String</OAuthToken>
<Token>String</Token>
<Acct>0</Acct>
<GetExpiredCards>false</GetExpiredCards>
<GetInactiveCards>false</GetInactiveCards>
</GetCustomerTokensRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<GetCustomerTokensResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIM.WebService">
<Status>
<DomainName>String</DomainName>
<ErrorCode>String</ErrorCode>
<ErrorDisplayText>String</ErrorDisplayText>
<ErrorMessage>String</ErrorMessage>
<IpAddress>String</IpAddress>
<Login>String</Login>
<StatusCode>String</StatusCode>
</Status>
<Ach>
<BankNumber>String</BankNumber>
<Name>String</Name>
<Routing>String</Routing>
<Type>String</Type>
</Ach>
<CustomerTokens>
<CCInfo>
<CardType>String</CardType>
<Expiration>String</Expiration>
<LastFour>String</LastFour>
<Primary>false</Primary>
<ReasonOnFile>String</ReasonOnFile>
<TokenPk>0</TokenPk>
<TokenStr>String</TokenStr>
</CCInfo>
</CustomerTokens>
</GetCustomerTokensResponse>