Currency List
This method returns the list of valid currencies that Pay It Square supports.
Method Info
| Url | https://www.payitsquare.com/api/v1/currencies |
|---|---|
| Verb | GET |
| Headers | X-PayItSquare-AppKey |
Output
| Property | Data Type | Other Info |
|---|---|---|
| CurrencyCode | String | The code for this currency. This is the value to use when updating or creating a collect page. |
| Symbol | String | |
| Description | String | |
| CultureCode | String | |
| FeeFixed | Single | This is used in determining the fee a payer pays when making a payment through Pay It Square. Fees are the greater of the fixed fee or the variable fee multiplied by the amound due. |
| FeeVariable | Single | This is used in determining the fee a payer pays when making a payment through Pay It Square. Fees are the greater of the fixed fee or the variable fee multiplied by the amound due. |
| FeeVariableChained | Single | |
| PayPalFeeVariable | Single | |
| PayPalFeeFixed | Single |
Sample Get Output
[
{
"CurrencyCode": "USD",
"Symbol": "$",
"Description": "US Dollars",
"CultureCode": "en-US",
"FeeFixed": 0.99,
"FeeVariable": 0.003,
"FeeVariableChained": 0.004,
"PayPalFeeVariable": 0.004,
"PayPalFeeFixed": 0.99
},
{
"CurrencyCode": "MXN",
"Symbol": "$",
"Description": "Mexican Pesos",
"CultureCode": "es-MX",
"FeeFixed": 0.99,
"FeeVariable": 0.003,
"FeeVariableChained": 0.004,
"PayPalFeeVariable": 0.004,
"PayPalFeeFixed": 0.99
}
]





