Skip to main content
POST
/
v1
/
payment_methods
Attach a PaymentMethod
curl --request POST \
  --url https://api.leanrails.com/v1/payment_methods \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --header 'Idempotency-Key: <idempotency-key>' \
  --data '
{
  "payment_method": "<string>",
  "customer": "<string>"
}
'
{
  "id": "<string>",
  "object": "payment_method",
  "type": "<string>",
  "livemode": true,
  "created": 123,
  "customer": "<string>",
  "card": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.fluveo.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use your secret API key as the username with an empty password.

Headers

Idempotency-Key
string
required

Unique key to ensure idempotent requests.

Maximum string length: 255
X-API-Version
string

Override the API version for this request.

Body

application/json
payment_method
string
required
customer
string
required

Response

Created

id
string
required
object
enum<string>
required
Available options:
payment_method
type
string
required
livemode
boolean
created
integer
customer
string | null
card
object