BokaMera.API.Host

<back to all web services

PaysonApiSettingsQuery

Requires Authentication
Requires any of the roles:bookingsupplier-administrator-write, bookingsupplier-administrator-read, superadmin
The following routes are available for this service:
GET/payment/payson/apisettingsGet payson api settingsGet payson api settings for the logged in company
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    @ValidateRequest(Validator="IsAuthenticated")
    public static class PaysonApiSettingsQuery implements ICompany
    {
        /**
        * The company id, if empty will use the company id for the user you are logged in with.
        */
        @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.")
        public UUID CompanyId = null;
        
        public UUID getCompanyId() { return CompanyId; }
        public PaysonApiSettingsQuery setCompanyId(UUID value) { this.CompanyId = value; return this; }
    }

    public static class PaysonApiSettingsQueryResponse
    {
        /**
        * The company id
        */
        @ApiMember(Description="The company id")
        public UUID CompanyId = null;

        /**
        * The payson security user id
        */
        @ApiMember(Description="The payson security user id")
        public String SecurityUserId = null;

        /**
        * The payson security user password
        */
        @ApiMember(Description="The payson security user password")
        public String SecurityPassword = null;

        /**
        * The payson receiver email
        */
        @ApiMember(Description="The payson receiver email")
        public String ReceiverEmail = null;

        /**
        * The payson receiver firstname
        */
        @ApiMember(Description="The payson receiver firstname")
        public String ReceiverFirstname = null;

        /**
        * The payson receiver lastname
        */
        @ApiMember(Description="The payson receiver lastname")
        public String ReceiverLastname = null;
        
        public UUID getCompanyId() { return CompanyId; }
        public PaysonApiSettingsQueryResponse setCompanyId(UUID value) { this.CompanyId = value; return this; }
        public String getSecurityUserId() { return SecurityUserId; }
        public PaysonApiSettingsQueryResponse setSecurityUserId(String value) { this.SecurityUserId = value; return this; }
        public String getSecurityPassword() { return SecurityPassword; }
        public PaysonApiSettingsQueryResponse setSecurityPassword(String value) { this.SecurityPassword = value; return this; }
        public String getReceiverEmail() { return ReceiverEmail; }
        public PaysonApiSettingsQueryResponse setReceiverEmail(String value) { this.ReceiverEmail = value; return this; }
        public String getReceiverFirstname() { return ReceiverFirstname; }
        public PaysonApiSettingsQueryResponse setReceiverFirstname(String value) { this.ReceiverFirstname = value; return this; }
        public String getReceiverLastname() { return ReceiverLastname; }
        public PaysonApiSettingsQueryResponse setReceiverLastname(String value) { this.ReceiverLastname = value; return this; }
    }

}

Java PaysonApiSettingsQuery DTOs

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.

GET /payment/payson/apisettings HTTP/1.1 
Host: testapi.bokamera.se 
Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"SecurityUserId":"String","SecurityPassword":"String","ReceiverEmail":"String","ReceiverFirstname":"String","ReceiverLastname":"String"}