POST | /sales/paymentprofile/import | Import a Payment Profile (using ProfileToken) | After a Payment Profile is created in the ClubReadyGateway API (aka Vault API), the information has to be imported into the ClubReady system. The AcctToken and ProfileToken are created by the ClubReadyGateway API. |
---|
namespace ClubReady.Payments
open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type PaymentProfileImportRequest() =
member val AcctToken:String = null with get,set
member val ProfileToken:String = null with get,set
member val DoNotUpdatePaymentTypePreference:Boolean = new Boolean() with get,set
member val NewOwner:Nullable<ValueTuple<Int32,OwnerType>> = new Nullable<ValueTuple<Int32,OwnerType>>() with get,set
[<ApiResponse(Description="", ResponseType=typeof<PaymentProfileImportResponse>, StatusCode=200)>]
[<AllowNullLiteral>]
type PaymentProfileImportEndpoint() =
inherit PaymentProfileImportRequest()
///<summary>
///Api Authentication Key
///</summary>
[<ApiMember(Description="Api Authentication Key", IsRequired=true, ParameterType="query")>]
member val ApiKey:String = null with get,set
///<summary>
///Encoded data uniquely identifying the payment profile. Long term storage of AcctToken is not recommended, as the token may change over time (for example, by processes like Account Updater). The length is usually 80 characters.
///</summary>
[<ApiMember(Description="\r\nEncoded data uniquely identifying the payment profile. \r\nLong term storage of AcctToken is not recommended, as the token may change over time (for example, by processes like Account Updater). \r\nThe length is usually 80 characters.", IsRequired=true)>]
member val AcctToken:String = null with get,set
///<summary>
///Encoded data containing non-PCI information about the Payment Profile. ProfileTokens contain a timestamp. If the ClubReady API does not process the token within 5 minutes,it cannot be accepted and a new profile will have to be created with a new AcctToken. The timevalidation is to prevent old tokens from be re-played at a later time. The length is variable, but generally around 1,000 characters.
///</summary>
[<ApiMember(Description="\r\nEncoded data containing non-PCI information about the Payment Profile. \r\n\r\nProfileTokens contain a timestamp. If the ClubReady API does not process the token within 5 minutes,\r\nit cannot be accepted and a new profile will have to be created with a new AcctToken. The time\r\nvalidation is to prevent old tokens from be re-played at a later time. \r\n\r\nThe length is variable, but generally around 1,000 characters.", IsRequired=true)>]
member val ProfileToken:String = null with get,set
///<summary>
///When adding a Payment Profile that is 'on-file', the default behavior is to update the user's Payment TypePreference to the AcctClass of the new profile. If you wish to not update the preference, you can set`DoNotUpdatePaymentTypePreference` to `true`. Otherwise, this can be omitted or `false`. For `IsTemp == true` profiles, `DoNotUpdatePaymentTypePreference` is ignored.
///</summary>
[<ApiMember(Description="\r\nWhen adding a Payment Profile that is 'on-file', the default behavior is to update the user's Payment Type\r\nPreference to the AcctClass of the new profile. If you wish to not update the preference, you can set\r\n`DoNotUpdatePaymentTypePreference` to `true`. Otherwise, this can be omitted or `false`. \r\n\r\nFor `IsTemp == true` profiles, `DoNotUpdatePaymentTypePreference` is ignored.")>]
member val DoNotUpdatePaymentTypePreference:Boolean = new Boolean() with get,set
///<summary>
///**Conditionally Required** When adding a Payment Profile that has an OwnerType of `TempStUser`, the ownership will be changed to OwnerType of `User`with the `UserId` of the supplied `NewOwnerId`.
///</summary>
[<ApiMember(Description="\r\n**Conditionally Required** \r\n\r\nWhen adding a Payment Profile that has an OwnerType of `TempStUser`, the ownership will be changed to OwnerType of `User`\r\nwith the `UserId` of the supplied `NewOwnerId`.")>]
member val NewOwnerId:Nullable<Int32> = new Nullable<Int32>() with get,set
[<AllowNullLiteral>]
type PaymentProfile() =
member val PaymentProfileId:Int32 = new Int32() with get,set
member val AcctToken:String = null with get,set
member val OwnerId:Int32 = new Int32() with get,set
member val OwnerTypeId:Int16 = new Int16() with get,set
member val AcctTypeId:Int16 = new Int16() with get,set
member val AcctClassId:Int16 = new Int16() with get,set
member val PrefixName:String = null with get,set
member val FirstName:String = null with get,set
member val MiddleName:String = null with get,set
member val LastName:String = null with get,set
member val SuffixName:String = null with get,set
member val Address1:String = null with get,set
member val Address2:String = null with get,set
member val Urbanization:String = null with get,set
member val City:String = null with get,set
member val State:String = null with get,set
member val PostalCode:String = null with get,set
member val CountryCode:String = null with get,set
member val Last4:String = null with get,set
member val CcExpMonth:Nullable<Byte> = new Nullable<Byte>() with get,set
member val CcExpYear:Nullable<Byte> = new Nullable<Byte>() with get,set
member val IsTemp:Boolean = new Boolean() with get,set
member val IsDisabled:Boolean = new Boolean() with get,set
member val OnHoldUtc:Nullable<DateTime> = new Nullable<DateTime>() with get,set
member val OnHoldReasonCode:Nullable<Byte> = new Nullable<Byte>() with get,set
member val OnHoldReasonDetail:String = null with get,set
member val AcctUpdaterFlagUtc:Nullable<DateTime> = new Nullable<DateTime>() with get,set
member val CreatedBy:Int32 = new Int32() with get,set
member val CreatedUtc:DateTime = new DateTime() with get,set
member val ModifiedBy:Int32 = new Int32() with get,set
member val ModifiedUtc:DateTime = new DateTime() with get,set
member val AcctUpdaterFlag:Boolean = new Boolean() with get,set
member val EntryModeId:Int16 = new Int16() with get,set
member val ExcludeFromAcctUpdater:Boolean = new Boolean() with get,set
[<AllowNullLiteral>]
type PaymentProfileImportResponse() =
member val Success:Boolean = new Boolean() with get,set
member val Message:String = null with get,set
member val PaymentProfile:PaymentProfile = null with get,set
F# PaymentProfileImportEndpoint DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /sales/paymentprofile/import HTTP/1.1
Host: clubready.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
ApiKey: String,
AcctToken: String,
ProfileToken: String,
DoNotUpdatePaymentTypePreference: False,
NewOwnerId: 0,
NewOwner: "(0, Unknown)"
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { Success: False, Message: String, PaymentProfile: { PaymentProfileId: 0, AcctToken: String, OwnerId: 0, OwnerTypeId: 0, AcctTypeId: 0, AcctClassId: 0, PrefixName: String, FirstName: String, MiddleName: String, LastName: String, SuffixName: String, Address1: String, Address2: String, Urbanization: String, City: String, State: String, PostalCode: String, CountryCode: String, Last4: String, CcExpMonth: 0, CcExpYear: 0, IsTemp: False, IsDisabled: False, OnHoldUtc: 0001-01-01, OnHoldReasonCode: 0, OnHoldReasonDetail: String, AcctUpdaterFlagUtc: 0001-01-01, CreatedBy: 0, CreatedUtc: 0001-01-01, ModifiedBy: 0, ModifiedUtc: 0001-01-01, AcctUpdaterFlag: False, EntryModeId: 0, ExcludeFromAcctUpdater: False } }