Create a payment method
How to create a payment method via API
Last updated
curl -g -X POST \
'https://yourdomain.commercelayer.io/api/payment_methods' \
-H 'Accept: application/vnd.api+json' \
-H 'Authorization: Bearer your-access-token' \
-H 'Content-Type: application/vnd.api+json' \
-d '{
"data": {
"type": "payment_methods",
"attributes": {
"payment_source_type": "stripe_payments",
"currency_code": "EUR",
"price_amount_cents": 0
},
"relationships": {
"payment_gateway": {
"data": {
"type": "payment_gateways",
"id": "ABCRtyUpBa"
}
}
}
}
}'{
"data": {
"id": "XAyRWNUzyN",
"type": "payment_methods",
"links": {
"self": "https://yourdomain.commercelayer.io/api/payment_methods/XAyRWNUzyN"
},
"attributes": {
"name": "Stripe Payment",
"payment_source_type": "stripe_payments",
"currency_code": "EUR",
"moto": false,
"require_capture": true,
"auto_place": true,
"auto_capture": false,
"price_amount_cents": 0,
"price_amount_float": 0.0,
"formatted_price_amount": "€0,00",
"auto_capture_max_amount_cents": 0,
"auto_capture_max_amount_float": 0.0,
"formatted_auto_capture_max_amount": "€0,00",
"disabled_at": "2018-01-01T12:00:00.000Z",
"created_at": "2018-01-01T12:00:00.000Z",
"updated_at": "2018-01-01T12:00:00.000Z",
"reference": "ANY-EXTERNAL-REFEFERNCE",
"reference_origin": "ANY-EXTERNAL-REFEFERNCE-ORIGIN",
"metadata": {
"foo": "bar"
}
},
"relationships": {
"market": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/payment_methods/XAyRWNUzyN/relationships/market",
"related": "https://yourdomain.commercelayer.io/api/payment_methods/XAyRWNUzyN/market"
}
},
"payment_gateway": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/payment_methods/XAyRWNUzyN/relationships/payment_gateway",
"related": "https://yourdomain.commercelayer.io/api/payment_methods/XAyRWNUzyN/payment_gateway"
}
},
"store": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/payment_methods/XAyRWNUzyN/relationships/store",
"related": "https://yourdomain.commercelayer.io/api/payment_methods/XAyRWNUzyN/store"
}
},
"attachments": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/payment_methods/XAyRWNUzyN/relationships/attachments",
"related": "https://yourdomain.commercelayer.io/api/payment_methods/XAyRWNUzyN/attachments"
}
},
"event_stores": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/payment_methods/XAyRWNUzyN/relationships/event_stores",
"related": "https://yourdomain.commercelayer.io/api/payment_methods/XAyRWNUzyN/event_stores"
}
}
},
"meta": {
"mode": "test",
"organization_id": "xRRkjDFafe",
"trace_id": "69abaa3545913c78132e5578bd26208d44aa9043647d78698fd0021f3958cd74"
}
},
"meta": {
"mode": "test",
"organization_id": "xRRkjDFafe",
"trace_id": "69abaa3545913c78132e5578bd26208d44aa9043647d78698fd0021f3958cd74"
}
}