| [ Web Proxy ] |
| Viewing: https://docs.stripe.com/api/mandates | [Back] [Original] |
A Mandate is a record of the permission that your customer gives you to debit their payment method.
Unique identifier for the object.
Details about the customers acceptance of the mandate.
ID of the payment method associated with this mandate.
Additional mandate information specific to the payment method type.
The mandate status indicates whether or not you can use it to initiate a payment.
activeThe mandate can be used to initiate a payment. |
inactiveThe mandate was rejected, revoked, or previously used, and may not be used to initiate future payments. |
pendingThe mandate is newly created and is not yet active or inactive. |
The type of the mandate.
multi_useRepresents permission given for multiple payments. |
single_useRepresents a one-time permission given for a single payment. |
{ "id": "mandate_1MvojA2eZvKYlo2CvqTABjZs", "object": "mandate", "customer_acceptance": { "accepted_at": 123456789, "online": { "ip_address": "127.0.0.0", "user_agent": "device" }, "type": "online" }, "livemode": false, "multi_use": {}, "payment_method": "pm_123456789", "payment_method_details": { "sepa_debit": { "reference": "123456789", "url": "" }, "type": "sepa_debit" }, "status": "active", "type": "multi_use"}Retrieves a Mandate object.
No parameters.
Returns a Mandate object.
curl https://api.stripe.com/v1/mandates/{{MANDATE_ID}} \ -u "sk_test_wU7nrJCZspk1NPDxiQgAF05qsk_test_wU7nrJCZspk1NPDxiQgAF05q:"{ "id": "mandate_1MvojA2eZvKYlo2CvqTABjZs", "object": "mandate", "customer_acceptance": { "accepted_at": 123456789, "online": { "ip_address": "127.0.0.0", "user_agent": "device" }, "type": "online" }, "livemode": false, "multi_use": {}, "payment_method": "pm_123456789", "payment_method_details": { "sepa_debit": { "reference": "123456789", "url": "" }, "type": "sepa_debit" }, "status": "active", "type": "multi_use"}| Web Proxy Viewer | New URL | Original Page |