Payment types
This page provides a description of the available API routes for managing payment types.
Last updated
Was this helpful?
This page provides a description of the available API routes for managing payment types.
Last updated
Was this helpful?
Each purchase has to be paid using various methods, including cash, payment cards, vouchers, and more. These payment methods are collectively referred to as "payment types" and are represented by the class.
GET
http://{server-address}/paymenttypes
Returns all payment types that matches query parameters. Result is of type .
number
int
Supports NData syntax.
isActive
bool
Supports NData syntax.
$skip
int
Pagination property. Describing number of records to skip from beginning of result collection.
$take
int
Pagination property. Maximum count of items to be returned.
$sort
string[]
Comma separated list of property names. Please see NData syntax.
$count
bool
If set to true
, response will not contain items
collection. Use to get resource count, not the resources themselves.
category
PaymentTypeCategory
Supports NData syntax.
isChangeable
bool
Supports NData syntax.
Authorization*
string
Authorization header with authorization token.
GET
http://{server-address}/paymenttypes/{number}
number*
int
Unique payment type number.
Authorization*
string
Authorization header with authorization token.
POST
http://{server-address}/paymenttypes
Required rights
Authorization*
string
Authorization header with authorization token.
(body)*
PaymentType
Model to create
PUT
http://{server-address}/paymenttypes/{number}
Required rights
number*
int
Unique payment type number.
Authorization*
string
Authorization header with authorization token.
(body)*
PaymentType
The model to create or update.
DELETE
http://{server-address}/paymenttypes/{number}
Required rights
number*
int
Unique payment type number.
Authorization*
string
Authorization header with authorization token.
Result is of type .
Creates new payment type. Result is of type .
Authorized user must have PaymentTypeCreate
assigned.
Updates existing or creates new payment type. Result is of type .
Authorized user must have assigned PaymentTypeCreate
or PaymentTypeUpdate
.
Authorized user must have PaymentTypeDelete
assigned.