List available payment methods in RepairShopr
I list all configured payment methods in your RepairShopr account. Payment methods are options like "Cash", "Check", "Credit Card", etc., that appear when recording payments or configuring payment processing.
Use this when:
Required API base URL:
VITE_REPAIRSHOPR_SUBDOMAINVITE_REPAIRSHOPR_API_KEYPermission: All Users except Single Customer Users may use this action.
List Payment Methods (GET /payment_methods) No parameters required.
Example call:
const result = await skill({ name: "repairshopr-payment-method" })
Response includes:
{
"payment_methods": [
{ "id": 1, "name": "Credit Card", "uses_card_processing": false },
{ "id": 2, "name": "Cash", "uses_card_processing": false },
{ "id": 3, "name": "Check", "uses_card_processing": false },
{ "id": 4, "name": "Offline CC", "uses_card_processing": false },
{ "id": 5, "name": "Quick", "uses_card_processing": false },
{ "id": 6, "name": "Other", "uses_card_processing": false }
]
}
uses_card_processing indicates if the method triggers card processing (may be false by default unless integrated)name is the display name and can be customized by the shopid can be used to identify the method internallyrepairshopr-payment - Creating payments using these methodsrepairshopr-payment-profile - For stored credit card profiles