Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Returns a list of payment methods.

Please be aware that this method has not been published yet and it's under construction.

Request

https://api.kometsales.com/api/payment.method.list

Input parameters:

  • authenticationToken (required): Komet Sales security token.

Response

Output:

  • status
  • message
  • methods: array of payment methods
    • id
    • name

 

 

 

Code Block
{
    "status": "1",
    "message": "OK",
    "method": [
        {
            "id": "1",
            "name": "Check"
        },
        {
            "id": "2",
            "name": "Credit Card Visa"
        }
    ]
}