The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

PayProp::API::Public::Client::Request::Entity::Payment - Payment entity module.

SYNOPSIS

        my $Payment = PayProp::API::Public::Client::Request::Entity::Payment->new(
                domain => 'API_DOMAIN.com',                                         # Required: API domain.
                authorization => C<PayProp::API::Public::Client::Authorization::*>, # Required: Instance of an authorization module.
        );

DESCRIPTION

Implementation for creating, retrieving and updating (CRU) payment entity results via API. This module is intended to be accessed via instance of PayProp::API::Public::Client.

METHODS

list_p(\%args)

Issues a HTTP GET request to PayProp API /entity/payment endpoint. It takes an optional HASHREF of parameters.

See "QUERY PARAMETERS" for a list of expected parameters.

        $Payment
                ->list_p({ params => {...}, path_params => {...} })
                ->then( sub {
                        my ( $ResponsePayment ) = @_;
                        ...;
                } )
                ->catch( sub {
                        my ( $Exception ) = @_;
                        ...;
                } )
                ->wait
        ;

Returns PayProp::API::Public::Client::Response::Entity::Payment on success or PayProp::API::Public::Client::Exception::Response on error.

create_p(\%args)

Issues a HTTP POST request to PayProp API /entity/payment endpoint.

See "REQUEST BODY FIELDS" for a list of expected request body fields.

        $Payment
                ->create_p({ content => {...} })
                ->then( sub {
                        my ( $ResponsePayment ) = @_;
                        ...;
                } )
                ->catch( sub {
                        my ( $Exception ) = @_;
                        ...;
                } )
                ->wait
        ;

Returns PayProp::API::Public::Client::Response::Entity::Payment on success or PayProp::API::Public::Client::Exception::Response on error.

update_p(\%args)

Issues a HTTP PUT request to PayProp API /entity/payment endpoint.

See "REQUEST BODY FIELDS" for a list of expected request body fields, "QUERY PARAMETERS" and "PATH PARAMETERS" for a list of expected parameters.

        $Payment
                ->update_p({ params => {...}, path_params => {...}, content => {...} })
                ->then( sub {
                        my ( $ResponsePayment ) = @_;
                        ...;
                } )
                ->catch( sub {
                        my ( $Exception ) = @_;
                        ...;
                } )
                ->wait
        ;

Returns PayProp::API::Public::Client::Response::Entity::Payment on success or PayProp::API::Public::Client::Exception::Response on error.

REQUEST BODY FIELDS

amount

number Payment amount. required

category_id

string [10..32] characters /^[a-zA-Z0-9]+$/ Payment category external ID. required

customer_id

string [1..50] characters /^[a-zA-Z0-9]+$/ The customer ID is a unique, case-sensitive value per API consumer. The value can be used to retrieve and update the entity. Providing null on update will remove the customer ID associated with the entity. Please note that currently, this functionality is marked as experimental; we strongly recommend keeping track of PayProp entity external_id along with your customer_id.

description

string <= 255 characters Payment description.

end_date

date Payment end date.

frequency

string Enum: "O" "W" "2W" "4W" "M" "2M" "Q" "6M" "A" Payment frequency. required

has_payment_period

boolean Available for reoccurring payments

has_tax

boolean

is_direct_debit

boolean

payment_day

number [1..31] required

property_id

string [1..32] characters /^[a-zA-Z0-9]+$/ External ID of payment property. required

start_date

date Payment start date.

tenant_id

string [1..32] characters /^[a-zA-Z0-9]+$/ External ID of payment tenant. required

QUERY PARAMETERS

is_customer_id

boolean Lookup entity based on given customer ID by overriding route external_id.

PATH PARAMETERS

external_id

string [1..32] characters /^[a-zA-Z0-9]+$/ External ID of payment. required for "list_p(\%args)" and "update_p(\%args)".

AUTHOR

Yanga Kandeni <yangak@cpan.org>

Valters Skrupskis <malishew@cpan.org>

COPYRIGHT

Copyright 2023- PayProp

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

If you would like to contribute documentation or file a bug report then please raise an issue / pull request:

https://github.com/Humanstate/api-client-public-module