# Payment Settings

## Get store payment settings

> Retrieves payment settings for a store.

```json
{"openapi":"3.1.1","info":{"title":"PayNow Management API","version":"v1"},"tags":[{"name":"payment-settings"}],"security":[{"APIKey":[]}],"components":{"securitySchemes":{"APIKey":{"type":"apiKey","description":"An API Key token generated in the Dashboard in the format 'APIKey TOKEN_HERE'.","name":"Authorization","in":"header"}},"schemas":{"FlakeId":{"type":"string","additionalProperties":false,"format":"flake-id"},"StorePaymentSettingsDto":{"required":["adaptive_currency_enabled","block_prepaid_cards","chargeback_coverage","force_3d_secure","max_checkout_amount","promo_code_stacking_behavior","show_adaptive_currency_on_storefront","show_all_payment_methods_for_subscriptions","store_tax_inclusive_pricing"],"type":"object","properties":{"show_all_payment_methods_for_subscriptions":{"type":"boolean","description":"Whether to show all available payment methods for subscription purchases."},"store_tax_inclusive_pricing":{"type":"boolean","description":"Whether store pricing is tax-inclusive."},"block_prepaid_cards":{"$ref":"#/components/schemas/PrepaidCardsBlockingTypeDto"},"promo_code_stacking_behavior":{"$ref":"#/components/schemas/StorePromoCodeStackingBehaviorDto"},"adaptive_currency_enabled":{"type":"boolean","description":"Whether the 'Adaptive Currency' feature is enabled."},"show_adaptive_currency_on_storefront":{"type":"boolean","description":"Whether the displayed currency on the storefront should be the Adaptive Currency by default."},"max_checkout_amount":{"type":"integer","description":"Maximum checkout amount allowed in cents.","format":"int64"},"force_3d_secure":{"type":"boolean","description":"Whether to force 3D Secure authentication for all transactions."},"chargeback_coverage":{"$ref":"#/components/schemas/ChargebackCoverageTypeDto"},"chargeback_coverage_max_amount":{"type":["null","integer"],"description":"Maximum per-transaction chargeback coverage amount in cents.","format":"int64"}},"additionalProperties":false,"description":"Store payment configuration settings."},"PrepaidCardsBlockingTypeDto":{"enum":["unspecified","none","trials","all_recurring"],"type":"string","description":"Defines when prepaid cards should be blocked from use."},"StorePromoCodeStackingBehaviorDto":{"enum":["invalid","disabled","enabled","gift_cards_only"],"type":"string","description":"Defines the behavior of promo code stacking."},"ChargebackCoverageTypeDto":{"enum":["unspecified","none","fraudulent","all"],"type":"string","description":"Defines the type of chargeback coverage provided."},"PayNowError":{"required":["code","message","status"],"type":"object","properties":{"status":{"type":"integer","description":"The HTTP status code.","format":"int32"},"code":{"type":"string","description":"The PayNow parseable error code."},"message":{"type":"string","description":"The human-readable error message."},"trace_id":{"type":["null","string"],"description":"A distributed trace ID used for debugging."},"errors":{"type":["null","array"],"items":{"$ref":"#/components/schemas/ValidationError"},"description":"An array of multiple errors. Only used by some API services."}},"additionalProperties":false,"description":"Represents a PayNow error"},"ValidationError":{"required":["code","message","path","validation"],"type":"object","properties":{"code":{"type":"string","description":"The parseable error code."},"message":{"type":"string","description":"The human-readable error message."},"path":{"type":"string","description":"The path leading to the validation error."},"validation":{"type":"string","description":"Type of the validation that failed."}},"additionalProperties":false,"description":"A validation error."}}},"paths":{"/v1/stores/{storeId}/payment-settings":{"get":{"tags":["payment-settings"],"summary":"Get store payment settings","description":"Retrieves payment settings for a store.","operationId":"PaymentsSettings_GetStorePaymentSettings","parameters":[{"name":"storeId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/FlakeId"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StorePaymentSettingsDto"}}}},"default":{"description":"Error response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PayNowError"}}}}}}}}}
```

## Updates store payment settings

> Updates payment settings for a store.

```json
{"openapi":"3.1.1","info":{"title":"PayNow Management API","version":"v1"},"tags":[{"name":"payment-settings"}],"security":[{"APIKey":[]}],"components":{"securitySchemes":{"APIKey":{"type":"apiKey","description":"An API Key token generated in the Dashboard in the format 'APIKey TOKEN_HERE'.","name":"Authorization","in":"header"}},"schemas":{"FlakeId":{"type":"string","additionalProperties":false,"format":"flake-id"},"UpdateStorePaymentSettingsDto":{"type":"object","properties":{"show_all_payment_methods_for_subscriptions":{"type":"boolean"},"store_tax_inclusive_pricing":{"type":"boolean"},"block_prepaid_cards":{"$ref":"#/components/schemas/PrepaidCardsBlockingTypeDto"},"promo_code_stacking_behavior":{"$ref":"#/components/schemas/StorePromoCodeStackingBehaviorDto"},"adaptive_currency_enabled":{"type":"boolean"},"show_adaptive_currency_on_storefront":{"type":"boolean"}}},"PrepaidCardsBlockingTypeDto":{"enum":["unspecified","none","trials","all_recurring"],"type":"string","description":"Defines when prepaid cards should be blocked from use."},"StorePromoCodeStackingBehaviorDto":{"enum":["invalid","disabled","enabled","gift_cards_only"],"type":"string","description":"Defines the behavior of promo code stacking."},"PayNowError":{"required":["code","message","status"],"type":"object","properties":{"status":{"type":"integer","description":"The HTTP status code.","format":"int32"},"code":{"type":"string","description":"The PayNow parseable error code."},"message":{"type":"string","description":"The human-readable error message."},"trace_id":{"type":["null","string"],"description":"A distributed trace ID used for debugging."},"errors":{"type":["null","array"],"items":{"$ref":"#/components/schemas/ValidationError"},"description":"An array of multiple errors. Only used by some API services."}},"additionalProperties":false,"description":"Represents a PayNow error"},"ValidationError":{"required":["code","message","path","validation"],"type":"object","properties":{"code":{"type":"string","description":"The parseable error code."},"message":{"type":"string","description":"The human-readable error message."},"path":{"type":"string","description":"The path leading to the validation error."},"validation":{"type":"string","description":"Type of the validation that failed."}},"additionalProperties":false,"description":"A validation error."}}},"paths":{"/v1/stores/{storeId}/payment-settings":{"patch":{"tags":["payment-settings"],"summary":"Updates store payment settings","description":"Updates payment settings for a store.","operationId":"PaymentsSettings_UpdateStorePaymentSettings","parameters":[{"name":"storeId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/FlakeId"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateStorePaymentSettingsDto"}},"text/json":{"schema":{"$ref":"#/components/schemas/UpdateStorePaymentSettingsDto"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/UpdateStorePaymentSettingsDto"}}}},"responses":{"204":{"description":"No Content"},"default":{"description":"Error response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PayNowError"}}}}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.paynow.gg/management/management-api/payment-settings.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
