setting/payment_method/get
POST
/setting/payment_method/getThis returns the list of payment methods available in the Equotix One account.
Request
The domain you are assigned to authenticate your Equotix One account.
The email address assigned to the user account in your Equotix One.
The unix timestamp used to sign this API request.
The calculated signature for this API request.
The payment method ID to search for specifically.
Filter the list of payment methods modified after the spcified date.
Filter the list of payment methods to include deleted records.
Filter the list of payment methods by channel group ID, comma separated values.
Page number of the results.
The key for the ordering of the results. Accepts "name", "sort_order", "date_modified"
The direction for the ordering of the results. Accepts "ASC", "DESC"
The number of results per page. Accepts 1 to 100.
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"payment_method_id": 0,
"filter_date_modified": "string",
"filter_deleted": true,
"filter_channel_group_id": "string",
"page": 0,
"sort": "string",
"order": "string",
"limit": 0
}
Responses
Returns only if there is an error.
The total number of results available.
The list of payment methods.
The payment method ID.
The channel group ID assigned to the payment method.
The payment method name.
The payment method default order status ID.
The payment method default credit note status ID.
The payment method additional configuration key-value pair.
The payment method sort order.
The date time this payment method was last modified.
Indicates if the payment method has been deleted. Only returned if filter_deleted is "1".
{
"error": [
"string"
],
"total": 0,
"payment_methods": [
{
"payment_method_id": 0,
"channel_group_id": 0,
"name": "string",
"order_status_id": 0,
"credit_note_status_id": 0,
"configuration": {},
"sort_order": 0,
"date_modified": "string",
"deleted": true
}
]
}