BokaMera.API.Host

<back to all web services

UpdatePaymentSettings

Requires Authentication
Requires any of the roles:bookingsupplier-administrator-write, superadmin
The following routes are available for this service:
PUT/payment/settings/Update payment settingsUpdate payment settings for the logged in company
UpdatePaymentSettings Parameters:
NameParameterData TypeRequiredDescription
CompanyIdbodyGuid?NoThe company id, if empty will use the company id for the user you are logged in with.
Enabledbodybool?NoThe payment is enabled
InvoiceFeebodyint?NoIf there should be any fee added when customer selected invoice payment method
AllowCreditCardPaymentbodybool?NoIf allow credit card payment
AllowInvoicePaymentbodybool?NoIf allow invoice payment
AllowBankPaymentbodybool?NoIf allow bank payment
RefundOnCancelBookingbodybool?NoAutomatically refund customer on canceled booking
DefaultPaymentOptionIdbodyint?NoThe default option when admin creates a new booking
PaymentProviderIdbodyint?NoWhat payment provider to use
PaymentSettingsQueryResponse Parameters:
NameParameterData TypeRequiredDescription
CompanyIdformGuidNoThe company id
EnabledformboolNoThe payment is enabled
InvoiceFeeformintNoIf there should be any fee added when customer selected invoice payment method
AllowCreditCardPaymentformboolNoIf allow credit card payment
AllowInvoicePaymentformboolNoIf allow invoice payment
AllowBankPaymentformboolNoIf allow bank payment
RefundOnCancelBookingformboolNoAutomatically refund customer on canceled booking
DefaultPaymentOptionIdformint?NoThe default option when admin creates a new booking
PaymentProviderIdformintNoWhat payment provider to use
AdminPaymentOptionsquerybooleanNoIf you want to include the admin payment options to select from
PaymentProviderOptionsquerybooleanNoIf you want to include the payment provider options to select from
SendPaymentRequestDirectlyformboolNoSendPaymentRequestDirectly
AdminPaymentOptionsResponse Parameters:
NameParameterData TypeRequiredDescription
IdformintNoThe payment options id
NameformstringNoThe payment options name
DescriptionformstringNoThe payment options description
PaymentProviderOptionsResponse Parameters:
NameParameterData TypeRequiredDescription
IdformintNoThe payment provider id
NameformstringNoThe payment provider name
DescriptionformstringNoThe payment provider description

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

HTTP + OTHER

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: testapi.bokamera.se 
Accept: text/jsonl
Content-Type: text/jsonl
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/jsonl
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}