Create a customer payment source
How to create a customer payment source via API
To create a new customer payment source, send a POST
request to the /api/customer_payment_sources
endpoint, passing the resource arguments in the request body.
Request
POST https://yourdomain.commercelayer.io/api/customer_payment_sources
Arguments
Body Parameter | Type | Required |
---|---|---|
type |
| Required |
attributes.customer_token |
| Optional |
attributes.payment_source_token |
| Optional |
attributes.reference |
| Optional |
attributes.reference_origin |
| Optional |
attributes.metadata |
| Optional |
relationships.customer |
| Required |
relationships.payment_method |
| Optional |
relationships.payment_source |
| Optional |
Example
The following request creates a new customer payment source:
Last updated