List settings
Retrieves merchant settings.
Responses
- 200
- 401
- 403
OK
- application/json
- Schema
- Example (from schema)
Schema
- tax_enabled boolean
Whether to show tax in receipts (saved per transaction)
- payout_type string
Payout type
- payout_period string
Payout frequency
- payout_on_demand_available boolean
Whether merchant can edit payouts on demand
- payout_on_demand boolean
Whether merchant will receive payouts on demand
- printers_enabled boolean
Whether to show printers in mobile app
- payout_instrument string
Payout Instrument
- moto_payment string
Possible values: [
UNAVAILABLE
,ENFORCED
,ON
,OFF
]Whether merchant can make MOTO payments
- stone_merchant_code string
Stone merchant code
- adyen_merchant_code string
Adyen merchant code
- adyen_user string
Adyen username
- adyen_password string
Adyen password
- adyen_company string
Adyen company
- daily_payout_email boolean
Whether merchant will receive daily payout emails
- monthly_payout_email boolean
Whether merchant will receive monthly payout emails
- gross_settlement boolean
Whether merchant has gross settlement enabled
{
"tax_enabled": true,
"payout_type": "string",
"payout_period": "string",
"payout_on_demand_available": true,
"payout_on_demand": true,
"printers_enabled": true,
"payout_instrument": "string",
"moto_payment": "UNAVAILABLE",
"stone_merchant_code": "string",
"adyen_merchant_code": "string",
"adyen_user": "string",
"adyen_password": "string",
"adyen_company": "string",
"daily_payout_email": true,
"monthly_payout_email": true,
"gross_settlement": true
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Invalid_ Token
- Not_ Authorized_ Token
- Missing_ Token
Schema
- message string
Short description of the error.
- error_code string
Platform code for the error.
{
"message": "string",
"error_code": "string"
}
{
"error_message": "invalid access token",
"error_code": "NOT_AUTHORIZED"
}
{
"error_message": "NOT_AUTHORIZED",
"error_code": "NOT_AUTHORIZED"
}
{
"message": "access token required",
"error_code": "NOT_AUTHORIZED"
}
Forbidden
- application/json
- Schema
- Example (from schema)
- Forbidden
Schema
- error_message string
Short description of the error.
- error_code string
Platform code for the error.
- status_code string
HTTP status code for the error.
{
"error_message": "string",
"error_code": "string",
"status_code": "string"
}
{
"error_message": "request_not_allowed",
"error_code": "FORBIDDEN",
"status_code": 403
}