Requires any of the roles: | bookingsupplier-administrator-write, superadmin |
PUT | /payment/settings/ | Update payment settings | Update payment settings for the logged in company |
---|
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports BokaMera.API.ServiceModel.Dtos
Namespace Global
Namespace BokaMera.API.ServiceModel.Dtos
Public Partial Class AdminPaymentOptionsResponse
'''<Summary>
'''The payment options id
'''</Summary>
<ApiMember(Description:="The payment options id")>
Public Overridable Property Id As Integer
'''<Summary>
'''The payment options name
'''</Summary>
<ApiMember(Description:="The payment options name")>
Public Overridable Property Name As String
'''<Summary>
'''The payment options description
'''</Summary>
<ApiMember(Description:="The payment options description")>
Public Overridable Property Description As String
End Class
Public Partial Class PaymentProviderOptionsResponse
'''<Summary>
'''The payment provider id
'''</Summary>
<ApiMember(Description:="The payment provider id")>
Public Overridable Property Id As Integer
'''<Summary>
'''The payment provider name
'''</Summary>
<ApiMember(Description:="The payment provider name")>
Public Overridable Property Name As String
'''<Summary>
'''The payment provider description
'''</Summary>
<ApiMember(Description:="The payment provider description")>
Public Overridable Property Description As String
End Class
Public Partial Class PaymentSettingsQueryResponse
Public Sub New()
AdminPaymentOptions = New List(Of AdminPaymentOptionsResponse)
PaymentProviderOptions = New List(Of PaymentProviderOptionsResponse)
End Sub
'''<Summary>
'''The company id
'''</Summary>
<ApiMember(Description:="The company id")>
Public Overridable Property CompanyId As Guid
'''<Summary>
'''The payment is enabled
'''</Summary>
<ApiMember(Description:="The payment is enabled")>
Public Overridable Property Enabled As Boolean
'''<Summary>
'''If there should be any fee added when customer selected invoice payment method
'''</Summary>
<ApiMember(Description:="If there should be any fee added when customer selected invoice payment method")>
Public Overridable Property InvoiceFee As Integer
'''<Summary>
'''If allow credit card payment
'''</Summary>
<ApiMember(Description:="If allow credit card payment")>
Public Overridable Property AllowCreditCardPayment As Boolean
'''<Summary>
'''If allow invoice payment
'''</Summary>
<ApiMember(Description:="If allow invoice payment")>
Public Overridable Property AllowInvoicePayment As Boolean
'''<Summary>
'''If allow bank payment
'''</Summary>
<ApiMember(Description:="If allow bank payment")>
Public Overridable Property AllowBankPayment As Boolean
'''<Summary>
'''Automatically refund customer on canceled booking
'''</Summary>
<ApiMember(Description:="Automatically refund customer on canceled booking")>
Public Overridable Property RefundOnCancelBooking As Boolean
'''<Summary>
'''The default option when admin creates a new booking
'''</Summary>
<ApiMember(Description:="The default option when admin creates a new booking")>
Public Overridable Property DefaultPaymentOptionId As Nullable(Of Integer)
'''<Summary>
'''What payment provider to use
'''</Summary>
<ApiMember(Description:="What payment provider to use")>
Public Overridable Property PaymentProviderId As Integer
'''<Summary>
'''If you want to include the admin payment options to select from
'''</Summary>
<ApiMember(DataType:="boolean", Description:="If you want to include the admin payment options to select from", ParameterType:="query")>
Public Overridable Property AdminPaymentOptions As List(Of AdminPaymentOptionsResponse)
'''<Summary>
'''If you want to include the payment provider options to select from
'''</Summary>
<ApiMember(DataType:="boolean", Description:="If you want to include the payment provider options to select from", ParameterType:="query")>
Public Overridable Property PaymentProviderOptions As List(Of PaymentProviderOptionsResponse)
'''<Summary>
'''SendPaymentRequestDirectly
'''</Summary>
<ApiMember(Description:="SendPaymentRequestDirectly")>
Public Overridable Property SendPaymentRequestDirectly As Boolean
End Class
<ValidateRequest(Validator:="IsAuthenticated")>
Public Partial Class UpdatePaymentSettings
Implements ICompany
'''<Summary>
'''The company id, if empty will use the company id for the user you are logged in with.
'''</Summary>
<ApiMember(Description:="The company id, if empty will use the company id for the user you are logged in with.")>
Public Overridable Property CompanyId As Nullable(Of Guid)
'''<Summary>
'''The payment is enabled
'''</Summary>
<ApiMember(Description:="The payment is enabled")>
Public Overridable Property Enabled As Nullable(Of Boolean)
'''<Summary>
'''If there should be any fee added when customer selected invoice payment method
'''</Summary>
<ApiMember(Description:="If there should be any fee added when customer selected invoice payment method")>
Public Overridable Property InvoiceFee As Nullable(Of Integer)
'''<Summary>
'''If allow credit card payment
'''</Summary>
<ApiMember(Description:="If allow credit card payment")>
Public Overridable Property AllowCreditCardPayment As Nullable(Of Boolean)
'''<Summary>
'''If allow invoice payment
'''</Summary>
<ApiMember(Description:="If allow invoice payment")>
Public Overridable Property AllowInvoicePayment As Nullable(Of Boolean)
'''<Summary>
'''If allow bank payment
'''</Summary>
<ApiMember(Description:="If allow bank payment")>
Public Overridable Property AllowBankPayment As Nullable(Of Boolean)
'''<Summary>
'''Automatically refund customer on canceled booking
'''</Summary>
<ApiMember(Description:="Automatically refund customer on canceled booking")>
Public Overridable Property RefundOnCancelBooking As Nullable(Of Boolean)
'''<Summary>
'''The default option when admin creates a new booking
'''</Summary>
<ApiMember(Description:="The default option when admin creates a new booking")>
Public Overridable Property DefaultPaymentOptionId As Nullable(Of Integer)
'''<Summary>
'''What payment provider to use
'''</Summary>
<ApiMember(Description:="What payment provider to use")>
Public Overridable Property PaymentProviderId As Nullable(Of Integer)
End Class
End Namespace
End Namespace
VB.NET UpdatePaymentSettings DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /payment/settings/ HTTP/1.1
Host: api.bokamera.se
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"CompanyId":"00000000-0000-0000-0000-000000000000","Enabled":false,"InvoiceFee":0,"AllowCreditCardPayment":false,"AllowInvoicePayment":false,"AllowBankPayment":false,"RefundOnCancelBooking":false,"DefaultPaymentOptionId":0,"PaymentProviderId":0}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"Enabled":false,"InvoiceFee":0,"AllowCreditCardPayment":false,"AllowInvoicePayment":false,"AllowBankPayment":false,"RefundOnCancelBooking":false,"DefaultPaymentOptionId":0,"PaymentProviderId":0,"AdminPaymentOptions":[{"Id":0,"Name":"String","Description":"String"}],"PaymentProviderOptions":[{"Id":0,"Name":"String","Description":"String"}],"SendPaymentRequestDirectly":false}