BokaMera.API.Host

<back to all web services

AddPaysonApiSettings

Requires Authentication
Requires any of the roles:bookingsupplier-administrator-write, superadmin
The following routes are available for this service:
POST/payment/payson/apisettingsAdd payson api settingsAdd payson api settings for the logged in company
import 'package:servicestack/servicestack.dart';

class PaysonApiSettingsQueryResponse implements IConvertible
{
    /**
    * The company id
    */
    // @ApiMember(Description="The company id")
    String? CompanyId;

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

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

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

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

    /**
    * The payson receiver lastname
    */
    // @ApiMember(Description="The payson receiver lastname")
    String? ReceiverLastname;

    PaysonApiSettingsQueryResponse({this.CompanyId,this.SecurityUserId,this.SecurityPassword,this.ReceiverEmail,this.ReceiverFirstname,this.ReceiverLastname});
    PaysonApiSettingsQueryResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        CompanyId = json['CompanyId'];
        SecurityUserId = json['SecurityUserId'];
        SecurityPassword = json['SecurityPassword'];
        ReceiverEmail = json['ReceiverEmail'];
        ReceiverFirstname = json['ReceiverFirstname'];
        ReceiverLastname = json['ReceiverLastname'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'CompanyId': CompanyId,
        'SecurityUserId': SecurityUserId,
        'SecurityPassword': SecurityPassword,
        'ReceiverEmail': ReceiverEmail,
        'ReceiverFirstname': ReceiverFirstname,
        'ReceiverLastname': ReceiverLastname
    };

    getTypeName() => "PaysonApiSettingsQueryResponse";
    TypeContext? context = _ctx;
}

// @ValidateRequest(Validator="IsAuthenticated")
class AddPaysonApiSettings implements ICompany, IConvertible
{
    /**
    * 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.")
    String? CompanyId;

    /**
    * The payson security user id
    */
    // @ApiMember(Description="The payson security user id", IsRequired=true)
    String? SecurityUserId;

    /**
    * The payson security user password
    */
    // @ApiMember(Description="The payson security user password", IsRequired=true)
    String? SecurityPassword;

    /**
    * The payson receiver email
    */
    // @ApiMember(Description="The payson receiver email", IsRequired=true)
    String? ReceiverEmail;

    /**
    * The payson receiver firstname
    */
    // @ApiMember(Description="The payson receiver firstname", IsRequired=true)
    String? ReceiverFirstname;

    /**
    * The payson receiver lastname
    */
    // @ApiMember(Description="The payson receiver lastname", IsRequired=true)
    String? ReceiverLastname;

    AddPaysonApiSettings({this.CompanyId,this.SecurityUserId,this.SecurityPassword,this.ReceiverEmail,this.ReceiverFirstname,this.ReceiverLastname});
    AddPaysonApiSettings.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        CompanyId = json['CompanyId'];
        SecurityUserId = json['SecurityUserId'];
        SecurityPassword = json['SecurityPassword'];
        ReceiverEmail = json['ReceiverEmail'];
        ReceiverFirstname = json['ReceiverFirstname'];
        ReceiverLastname = json['ReceiverLastname'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'CompanyId': CompanyId,
        'SecurityUserId': SecurityUserId,
        'SecurityPassword': SecurityPassword,
        'ReceiverEmail': ReceiverEmail,
        'ReceiverFirstname': ReceiverFirstname,
        'ReceiverLastname': ReceiverLastname
    };

    getTypeName() => "AddPaysonApiSettings";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: <String, TypeInfo> {
    'PaysonApiSettingsQueryResponse': TypeInfo(TypeOf.Class, create:() => PaysonApiSettingsQueryResponse()),
    'AddPaysonApiSettings': TypeInfo(TypeOf.Class, create:() => AddPaysonApiSettings()),
});

Dart AddPaysonApiSettings DTOs

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

HTTP + JSV

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: testapi.bokamera.se 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	CompanyId: 00000000-0000-0000-0000-000000000000,
	SecurityUserId: String,
	SecurityPassword: String,
	ReceiverEmail: String,
	ReceiverFirstname: String,
	ReceiverLastname: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

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