List all Payment Methods
GET/api/payment-methods
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
curl -X GET "https://yoursite.com/api/payment-methods" \
-H "authtoken: YOUR_API_TOKEN" Success-Response:
[
{
"id": "1",
"title": "Bank Transfer",
"description": "",
"type": "custom"
}
]