Requires any of the roles: | bookingsupplier-administrator-write, superadmin |
POST | /payment/payson/apisettings | Add payson api settings | Add 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 AddPaysonApiSettings 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;
/**
* The payson security user id
*/
@ApiMember(Description="The payson security user id", IsRequired=true)
public String SecurityUserId = null;
/**
* The payson security user password
*/
@ApiMember(Description="The payson security user password", IsRequired=true)
public String SecurityPassword = null;
/**
* The payson receiver email
*/
@ApiMember(Description="The payson receiver email", IsRequired=true)
public String ReceiverEmail = null;
/**
* The payson receiver firstname
*/
@ApiMember(Description="The payson receiver firstname", IsRequired=true)
public String ReceiverFirstname = null;
/**
* The payson receiver lastname
*/
@ApiMember(Description="The payson receiver lastname", IsRequired=true)
public String ReceiverLastname = null;
public UUID getCompanyId() { return CompanyId; }
public AddPaysonApiSettings setCompanyId(UUID value) { this.CompanyId = value; return this; }
public String getSecurityUserId() { return SecurityUserId; }
public AddPaysonApiSettings setSecurityUserId(String value) { this.SecurityUserId = value; return this; }
public String getSecurityPassword() { return SecurityPassword; }
public AddPaysonApiSettings setSecurityPassword(String value) { this.SecurityPassword = value; return this; }
public String getReceiverEmail() { return ReceiverEmail; }
public AddPaysonApiSettings setReceiverEmail(String value) { this.ReceiverEmail = value; return this; }
public String getReceiverFirstname() { return ReceiverFirstname; }
public AddPaysonApiSettings setReceiverFirstname(String value) { this.ReceiverFirstname = value; return this; }
public String getReceiverLastname() { return ReceiverLastname; }
public AddPaysonApiSettings setReceiverLastname(String value) { this.ReceiverLastname = 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 AddPaysonApiSettings 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 /payment/payson/apisettings HTTP/1.1
Host: api.bokamera.se
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<AddPaysonApiSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos">
<CompanyId>00000000-0000-0000-0000-000000000000</CompanyId>
<ReceiverEmail>String</ReceiverEmail>
<ReceiverFirstname>String</ReceiverFirstname>
<ReceiverLastname>String</ReceiverLastname>
<SecurityPassword>String</SecurityPassword>
<SecurityUserId>String</SecurityUserId>
</AddPaysonApiSettings>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <PaysonApiSettingsQueryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos"> <CompanyId>00000000-0000-0000-0000-000000000000</CompanyId> <ReceiverEmail>String</ReceiverEmail> <ReceiverFirstname>String</ReceiverFirstname> <ReceiverLastname>String</ReceiverLastname> <SecurityPassword>String</SecurityPassword> <SecurityUserId>String</SecurityUserId> </PaysonApiSettingsQueryResponse>