GET api/User/getPaymentMethod?orgId={orgId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orgId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PaymentMethodPermission| Name | Description | Type | Additional information |
|---|---|---|---|
| PaypalPaymentMethod | boolean |
None. |
|
| PaypalOnetimePayment | boolean |
None. |
|
| PaypalRecurringPayment | boolean |
None. |
|
| StripePaymentMethod | boolean |
None. |
|
| StripeOnetimePayment | boolean |
None. |
|
| StripeRecurringPayment | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"PaypalPaymentMethod": true,
"PaypalOnetimePayment": true,
"PaypalRecurringPayment": true,
"StripePaymentMethod": true,
"StripeOnetimePayment": true,
"StripeRecurringPayment": true
}
application/xml, text/xml
Sample:
<PaymentMethodPermission xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Flag360.Models"> <PaypalOnetimePayment>true</PaypalOnetimePayment> <PaypalPaymentMethod>true</PaypalPaymentMethod> <PaypalRecurringPayment>true</PaypalRecurringPayment> <StripeOnetimePayment>true</StripeOnetimePayment> <StripePaymentMethod>true</StripePaymentMethod> <StripeRecurringPayment>true</StripeRecurringPayment> </PaymentMethodPermission>