Payment Methods

Payment Methods

POST https://sandbox.mnasati.com/v1/payment_methods

This endpoint allows you to get all the available payment methods.

Headers

NameTypeDescription

Content-Type

string

Application/JSON

Access Token

string

Authentication token JWT.

{
   "status":true,
   "payment_methods":[
      
   ]
}

Examples

import http.client

conn = http.client.HTTPSConnection("sandbox.mnasati.com")

headers = {
    'Content-Type': "",
    'Authorization-Jwt': ""
    }

conn.request("POST", "/v1/payment_methods", headers=headers)

res = conn.getresponse()
data = res.read()

print(data.decode("utf-8"))

Last updated