BokaMera.API.Host

<back to all web services

UpdatePaysonApiSettings

Requires Authentication
Requires any of the roles:bookingsupplier-administrator-write, superadmin
The following routes are available for this service:
PUT/payment/payson/apisettings/Update payson api settingsUpdate 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 UpdatePaysonApiSettings 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")
    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;

    UpdatePaysonApiSettings({this.CompanyId,this.SecurityUserId,this.SecurityPassword,this.ReceiverEmail,this.ReceiverFirstname,this.ReceiverLastname});
    UpdatePaysonApiSettings.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() => "UpdatePaysonApiSettings";
    TypeContext? context = _ctx;
}

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

Dart UpdatePaysonApiSettings DTOs

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

HTTP + CSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

PUT /payment/payson/apisettings/ HTTP/1.1 
Host: testapi.bokamera.se 
Accept: text/csv
Content-Type: text/csv
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/csv
Content-Length: length

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