Logo
  • HOME
  • ABOUT US
  • PRODUCT
  • PRICING
  • DOCUMENT
  • CONTACT US
DONATIONUNITS
GET -
/donation/units
POST -
/donation/units
POST -
/donation/units/paginate
GET -
/donation/units/{id}
PUT -
/donation/units/{id}
DELETE -
/donation/units/{id}
GATEWAYCONFIGS
GATEWAYS
GROUPS
INVOICES
ORDERS
PAYMENTS
PERMISSIONS
PRODUCTS
ROLES
USERS
DONATIONUNITS
GET -
/donation/units
GET ALL DONATIONUNITS
Retrieve a list of all donationUnits
POST -
/donation/units
CREATE A NEW DONATIONUNIT
Create a new donationUnit with the provided information

Required:

{
"description":string,
"id":string,
"name":string,
}
POST -
/donation/units/paginate
PAGINATE DONATIONUNITS
Paginate a list of donationUnits with the provided pagination info Filterable & sortable fields [id | name]

Required: page , rowsPerPage

{
"filters":[{ "filterKey": "string", "filterValue": "string", "filterValues": "[string]", "operator": "string" }],
"page":0,
"rowsPerPage":0,
"sortBy":string,
"sortType":string,
}
GET -
/donation/units/{id}
GET DONATIONUNIT BY ID
Retrieve a donationUnit by its ID
- path
description: DonationUnit ID
PUT -
/donation/units/{id}
UPDATE A DONATIONUNIT
Update an existing donationUnit with the provided information
- path
description: DonationUnit ID

Required:

{
"description":string,
"name":string,
}
DELETE -
/donation/units/{id}
DELETE A DONATIONUNIT
Delete a donationUnit by its ID
- path
description: DonationUnit ID