Authorizations
Access token
Commerce Engine is now in beta. We're working hard to make it better for you.
curl --request GET \
--url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/payments/payment-options \
--header 'Authorization: Bearer <token>'
{
"message": "<string>",
"success": true,
"content": {
"payment_options": [
"CASH"
]
}
}
List all payment options
curl --request GET \
--url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/payments/payment-options \
--header 'Authorization: Bearer <token>'
{
"message": "<string>",
"success": true,
"content": {
"payment_options": [
"CASH"
]
}
}
Access token
Was this page helpful?