deploy
This commit is contained in:
68
skills/payment-method-domains/SKILL.md
Normal file
68
skills/payment-method-domains/SKILL.md
Normal file
@@ -0,0 +1,68 @@
|
||||
---
|
||||
name: payment-method-domains-routes
|
||||
description: Handle 5 OpenAPI operation(s) under /v1/payment_method_domains for the payment method domains route group.
|
||||
---
|
||||
|
||||
# payment method domains API Routes
|
||||
|
||||
Handle 5 OpenAPI operation(s) under /v1/payment_method_domains for the payment method domains route group.
|
||||
|
||||
Use the generated operation tools to make real API calls. Do not invent API responses.
|
||||
If a tool reports missing setup, return the exact setup field name to the caller.
|
||||
For write, update, or delete operations, state the intended action before calling the tool.
|
||||
|
||||
## Operations
|
||||
|
||||
### get_payment_method_domains
|
||||
|
||||
- Operation ID: `get_payment_method_domains`
|
||||
- Route: `GET /v1/payment_method_domains`
|
||||
- Mode: READ
|
||||
- Summary: List payment method domains
|
||||
- Parameters:
|
||||
- `domain_name` in `query`
|
||||
- `enabled` in `query`
|
||||
- `ending_before` in `query`
|
||||
- `expand` in `query`
|
||||
- `limit` in `query`
|
||||
- `starting_after` in `query`
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### post_payment_method_domains
|
||||
|
||||
- Operation ID: `post_payment_method_domains`
|
||||
- Route: `POST /v1/payment_method_domains`
|
||||
- Mode: WRITE
|
||||
- Summary: Create a payment method domain
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### get_payment_method_domains_payment_method_domain
|
||||
|
||||
- Operation ID: `get_payment_method_domains_payment_method_domain`
|
||||
- Route: `GET /v1/payment_method_domains/{payment_method_domain}`
|
||||
- Mode: READ
|
||||
- Summary: Retrieve a payment method domain
|
||||
- Parameters:
|
||||
- `expand` in `query`
|
||||
- `payment_method_domain` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### post_payment_method_domains_payment_method_domain
|
||||
|
||||
- Operation ID: `post_payment_method_domains_payment_method_domain`
|
||||
- Route: `POST /v1/payment_method_domains/{payment_method_domain}`
|
||||
- Mode: WRITE
|
||||
- Summary: Update a payment method domain
|
||||
- Parameters:
|
||||
- `payment_method_domain` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### post_payment_method_domains_payment_method_domain_validate
|
||||
|
||||
- Operation ID: `post_payment_method_domains_payment_method_domain_validate`
|
||||
- Route: `POST /v1/payment_method_domains/{payment_method_domain}/validate`
|
||||
- Mode: WRITE
|
||||
- Summary: Validate an existing payment method domain
|
||||
- Parameters:
|
||||
- `payment_method_domain` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
Reference in New Issue
Block a user