Gets a list of payment gateways.
Name | Description | Usage |
---|---|---|
name | This will filter the request by name. | GET paymentgateways?filter=name~{operator}~{value} |
Name | Description | Usage |
---|---|---|
name | This will sort the response by name. | GET paymentgateways?sort=name |
paymentGatewayId | This will sort the response by payment gateway ID. | GET paymentgateways?sort=paymentgatewayid |
Name | Description | Usage |
---|---|---|
index | The index to retrieve when requesting paged results. | GET paymentgateways?page=index~{value} |
size | The size of the page when retrieving paged results. | GET paymentgateways?page=size~{value} |
If this endpoint supports expands, they will be included in the sample response body below. However, please note that expands are NOT included in the response body by default. Expands are only included in the response body if they came through as part of the request.
{
"PaymentGateways": [
{
"Name": "Authorize.Net",
"PaymentGatewayId": 1,
"Url": "http://www.authorize.net"
}
],
"PageIndex": null,
"PageSize": null,
"TotalPages": null,
"TotalResults": null,
"ErrorCode": null,
"ErrorMessage": null,
"StackTrace": null,
"AllowHtmlResponse": false,
"HasError": false,
"StringResponse": null
}